Вход Регистрация
Файл: vendor/laravel/framework/src/Illuminate/Testing/Constraints/SeeInOrder.php
Строк: 94
<?php

namespace IlluminateTestingConstraints;

use 
PHPUnitFrameworkConstraintConstraint;
use 
ReflectionClass;

class 
SeeInOrder extends Constraint
{
    
/**
     * The string under validation.
     *
     * @var string
     */
    
protected $content;

    
/**
     * The last value that failed to pass validation.
     *
     * @var string
     */
    
protected $failedValue;

    
/**
     * Create a new constraint instance.
     *
     * @param  string  $content
     */
    
public function __construct($content)
    {
        
$this->content $content;
    }

    
/**
     * Determine if the rule passes validation.
     *
     * @param  array  $values
     * @return bool
     */
    
public function matches($values): bool
    
{
        
$decodedContent html_entity_decode($this->contentENT_QUOTES'UTF-8');

        
$position 0;

        foreach (
$values as $value) {
            if (empty(
$value)) {
                continue;
            }

            
$decodedValue html_entity_decode($valueENT_QUOTES'UTF-8');

            
$valuePosition mb_strpos($decodedContent$decodedValue$position);

            if (
$valuePosition === false || $valuePosition $position) {
                
$this->failedValue $value;

                return 
false;
            }

            
$position $valuePosition mb_strlen($decodedValue);
        }

        return 
true;
    }

    
/**
     * Get the description of the failure.
     *
     * @param  array  $values
     * @return string
     */
    
public function failureDescription($values): string
    
{
        return 
sprintf(
            
''%s' contains "%s" in specified order.',
            
$this->content,
            
$this->failedValue
        
);
    }

    
/**
     * Get a string representation of the object.
     *
     * @return string
     */
    
public function toString(): string
    
{
        return (new 
ReflectionClass($this))->name;
    }
}
Онлайн: 2
Реклама