platform/api/symfony/Component/Form/Test/FormIntegrationTestCase.yaml
2024-09-02 10:44:11 -07:00

56 lines
2 KiB
YAML

name: FormIntegrationTestCase
class_comment: null
dependencies:
- name: TestCase
type: class
source: PHPUnit\Framework\TestCase
- name: FormExtensionInterface
type: class
source: Symfony\Component\Form\FormExtensionInterface
- name: FormFactoryInterface
type: class
source: Symfony\Component\Form\FormFactoryInterface
- name: Forms
type: class
source: Symfony\Component\Form\Forms
- name: FormTypeExtensionInterface
type: class
source: Symfony\Component\Form\FormTypeExtensionInterface
- name: FormTypeGuesserInterface
type: class
source: Symfony\Component\Form\FormTypeGuesserInterface
- name: FormTypeInterface
type: class
source: Symfony\Component\Form\FormTypeInterface
properties: []
methods:
- name: getExtensions
visibility: protected
parameters: []
comment: "# * @author Bernhard Schussek <bschussek@gmail.com>\n# */\n# abstract\
\ class FormIntegrationTestCase extends TestCase\n# {\n# protected FormFactoryInterface\
\ $factory;\n# \n# protected function setUp(): void\n# {\n# $this->factory = Forms::createFormFactoryBuilder()\n\
# ->addExtensions($this->getExtensions())\n# ->addTypeExtensions($this->getTypeExtensions())\n\
# ->addTypes($this->getTypes())\n# ->addTypeGuessers($this->getTypeGuessers())\n\
# ->getFormFactory();\n# }\n# \n# /**\n# * @return FormExtensionInterface[]"
- name: getTypeExtensions
visibility: protected
parameters: []
comment: '# * @return FormTypeExtensionInterface[]'
- name: getTypes
visibility: protected
parameters: []
comment: '# * @return FormTypeInterface[]'
- name: getTypeGuessers
visibility: protected
parameters: []
comment: '# * @return FormTypeGuesserInterface[]'
traits:
- PHPUnit\Framework\TestCase
- Symfony\Component\Form\FormExtensionInterface
- Symfony\Component\Form\FormFactoryInterface
- Symfony\Component\Form\Forms
- Symfony\Component\Form\FormTypeExtensionInterface
- Symfony\Component\Form\FormTypeGuesserInterface
- Symfony\Component\Form\FormTypeInterface
interfaces: []