platform/api/laravel/Testing/Constraints/SeeInOrder.yaml
2024-09-02 10:44:11 -07:00

67 lines
1.5 KiB
YAML

name: SeeInOrder
class_comment: null
dependencies:
- name: Constraint
type: class
source: PHPUnit\Framework\Constraint\Constraint
- name: ReflectionClass
type: class
source: ReflectionClass
properties:
- name: content
visibility: protected
comment: '# * The string under validation.
# *
# * @var string'
- name: failedValue
visibility: protected
comment: '# * The last value that failed to pass validation.
# *
# * @var string'
methods:
- name: __construct
visibility: public
parameters:
- name: content
comment: "# * The string under validation.\n# *\n# * @var string\n# */\n# protected\
\ $content;\n# \n# /**\n# * The last value that failed to pass validation.\n#\
\ *\n# * @var string\n# */\n# protected $failedValue;\n# \n# /**\n# * Create a\
\ new constraint instance.\n# *\n# * @param string $content\n# * @return void"
- name: matches
visibility: public
parameters:
- name: values
comment: '# * Determine if the rule passes validation.
# *
# * @param array $values
# * @return bool'
- name: failureDescription
visibility: public
parameters:
- name: values
comment: '# * Get the description of the failure.
# *
# * @param array $values
# * @return string'
- name: toString
visibility: public
parameters: []
comment: '# * Get a string representation of the object.
# *
# * @return string'
traits:
- PHPUnit\Framework\Constraint\Constraint
- ReflectionClass
interfaces: []