1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327 |
- <?php
- declare(strict_types=1);
- /*
- * This file is part of PHP CS Fixer.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- * Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- namespace PhpCsFixer\Tests\Fixer\Phpdoc;
- use PhpCsFixer\Fixer\Phpdoc\PhpdocAlignFixer;
- use PhpCsFixer\Tests\Test\AbstractFixerTestCase;
- use PhpCsFixer\WhitespacesFixerConfig;
- /**
- * @internal
- *
- * @covers \PhpCsFixer\Fixer\Phpdoc\PhpdocAlignFixer
- */
- final class PhpdocAlignFixerTest extends AbstractFixerTestCase
- {
- /**
- * @dataProvider provideFixCases
- *
- * @param array{align: string, tags: array<string>} $configuration
- */
- public function testFix(
- array $configuration,
- string $expected,
- ?string $input = null,
- ?WhitespacesFixerConfig $whitespacesFixerConfig = null
- ): void {
- $this->fixer->configure($configuration);
- if (null !== $whitespacesFixerConfig) {
- $this->fixer->setWhitespacesConfig($whitespacesFixerConfig);
- }
- $this->doTest($expected, $input);
- }
- public static function provideFixCases(): iterable
- {
- yield 'none, one and four spaces between type and variable' => [
- ['tags' => ['param']],
- '<?php
- /**
- * @param int $a
- * @param int $b
- * @param int $c
- */',
- '<?php
- /**
- * @param int $a
- * @param int $b
- * @param int$c
- */',
- ];
- yield 'aligning params' => [
- ['tags' => ['param']],
- '<?php
- /**
- * @param EngineInterface $templating
- * @param string $format
- * @param int $code An HTTP response status code
- * @param bool $debug
- * @param mixed &$reference A parameter passed by reference
- */
- ',
- '<?php
- /**
- * @param EngineInterface $templating
- * @param string $format
- * @param int $code An HTTP response status code
- * @param bool $debug
- * @param mixed &$reference A parameter passed by reference
- */
- ',
- ];
- yield 'left align' => [
- ['tags' => ['param'], 'align' => PhpdocAlignFixer::ALIGN_LEFT],
- '<?php
- /**
- * @param EngineInterface $templating
- * @param string $format
- * @param int $code An HTTP response status code
- * @param bool $debug
- * @param mixed &$reference A parameter passed by reference
- */
- ',
- '<?php
- /**
- * @param EngineInterface $templating
- * @param string $format
- * @param int $code An HTTP response status code
- * @param bool $debug
- * @param mixed &$reference A parameter passed by reference
- */
- ',
- ];
- yield 'partially untyped' => [
- ['tags' => ['param']],
- '<?php
- /**
- * @param $id
- * @param $parentId
- * @param int $websiteId
- * @param $position
- * @param int[][] $siblings
- */
- ',
- '<?php
- /**
- * @param $id
- * @param $parentId
- * @param int $websiteId
- * @param $position
- * @param int[][] $siblings
- */
- ',
- ];
- yield 'partially untyped left align' => [
- ['tags' => ['param'], 'align' => PhpdocAlignFixer::ALIGN_LEFT],
- '<?php
- /**
- * @param $id
- * @param $parentId
- * @param int $websiteId
- * @param $position
- * @param int[][] $siblings
- */
- ',
- '<?php
- /**
- * @param $id
- * @param $parentId
- * @param int $websiteId
- * @param $position
- * @param int[][] $siblings
- */
- ',
- ];
- yield 'multiline description' => [
- ['tags' => ['param', 'property', 'method']],
- '<?php
- /**
- * @param EngineInterface $templating
- * @param string $format
- * @param int $code An HTTP response status code
- * See constants
- * @param bool $debug
- * @param bool $debug See constants
- * See constants
- * @param mixed &$reference A parameter passed by reference
- * @property mixed $foo A foo
- * See constants
- * @method static baz($bop) A method that does a thing
- * It does it well
- */
- ',
- '<?php
- /**
- * @param EngineInterface $templating
- * @param string $format
- * @param int $code An HTTP response status code
- * See constants
- * @param bool $debug
- * @param bool $debug See constants
- * See constants
- * @param mixed &$reference A parameter passed by reference
- * @property mixed $foo A foo
- * See constants
- * @method static baz($bop) A method that does a thing
- * It does it well
- */
- ',
- ];
- yield 'multiline description left align' => [
- ['tags' => ['param', 'property', 'method'], 'align' => PhpdocAlignFixer::ALIGN_LEFT],
- '<?php
- /**
- * @param EngineInterface $templating
- * @param string $format
- * @param int $code An HTTP response status code
- * See constants
- * @param bool $debug
- * @param bool $debug See constants
- * See constants
- * @param mixed &$reference A parameter passed by reference
- * @property mixed $foo A foo
- * See constants
- * @method static baz($bop) A method that does a thing
- * It does it well
- */
- ',
- '<?php
- /**
- * @param EngineInterface $templating
- * @param string $format
- * @param int $code An HTTP response status code
- * See constants
- * @param bool $debug
- * @param bool $debug See constants
- * See constants
- * @param mixed &$reference A parameter passed by reference
- * @property mixed $foo A foo
- * See constants
- * @method static baz($bop) A method that does a thing
- * It does it well
- */
- ',
- ];
- yield 'multiline description with throws' => [
- ['tags' => ['param', 'return', 'throws']],
- '<?php
- /**
- * @param EngineInterface $templating
- * @param string $format
- * @param int $code An HTTP response status code
- * See constants
- * @param bool $debug
- * @param bool $debug See constants
- * See constants
- * @param mixed &$reference A parameter passed by reference
- *
- * @return Foo description foo
- *
- * @throws Foo description foo
- * description foo
- */
- ',
- '<?php
- /**
- * @param EngineInterface $templating
- * @param string $format
- * @param int $code An HTTP response status code
- * See constants
- * @param bool $debug
- * @param bool $debug See constants
- * See constants
- * @param mixed &$reference A parameter passed by reference
- *
- * @return Foo description foo
- *
- * @throws Foo description foo
- * description foo
- */
- ',
- ];
- yield 'multiline description with throws left align' => [
- ['tags' => ['param', 'return', 'throws'], 'align' => PhpdocAlignFixer::ALIGN_LEFT],
- '<?php
- /**
- * @param EngineInterface $templating
- * @param string $format
- * @param int $code An HTTP response status code
- * See constants
- * @param bool $debug
- * @param bool $debug See constants
- * See constants
- * @param mixed &$reference A parameter passed by reference
- *
- * @return Foo description foo
- *
- * @throws Foo description foo
- * description foo
- */
- ',
- '<?php
- /**
- * @param EngineInterface $templating
- * @param string $format
- * @param int $code An HTTP response status code
- * See constants
- * @param bool $debug
- * @param bool $debug See constants
- * See constants
- * @param mixed &$reference A parameter passed by reference
- *
- * @return Foo description foo
- *
- * @throws Foo description foo
- * description foo
- */
- ',
- ];
- yield 'return and throws' => [
- ['tags' => ['param', 'throws', 'return']],
- '<?php
- /**
- * @param EngineInterface $templating
- * @param mixed &$reference A parameter passed by reference
- * Multiline description
- * @throws Bar description bar
- * @return Foo description foo
- * multiline description
- */
- ',
- '<?php
- /**
- * @param EngineInterface $templating
- * @param mixed &$reference A parameter passed by reference
- * Multiline description
- * @throws Bar description bar
- * @return Foo description foo
- * multiline description
- */
- ',
- ];
- // https://github.com/FriendsOfPhp/PHP-CS-Fixer/issues/55
- yield 'three params with return' => [
- ['tags' => ['param', 'return']],
- '<?php
- /**
- * @param string $param1
- * @param bool $param2 lorem ipsum
- * @param string $param3 lorem ipsum
- * @return int lorem ipsum
- */
- ',
- '<?php
- /**
- * @param string $param1
- * @param bool $param2 lorem ipsum
- * @param string $param3 lorem ipsum
- * @return int lorem ipsum
- */
- ',
- ];
- yield 'only return' => [
- ['tags' => ['return']],
- '<?php
- /**
- * @return Foo description foo
- */
- ',
- '<?php
- /**
- * @return Foo description foo
- */
- ',
- ];
- yield 'return with $this' => [
- ['tags' => ['param', 'return']],
- '<?php
- /**
- * @param Foo $foo
- * @return $this
- */
- ',
- '<?php
- /**
- * @param Foo $foo
- * @return $this
- */
- ',
- ];
- yield 'custom annotations stay untouched' => [
- ['tags' => ['return']],
- '<?php
- /**
- * @return string
- * @SuppressWarnings(PHPMD.UnusedLocalVariable)
- */
- ',
- '<?php
- /**
- * @return string
- * @SuppressWarnings(PHPMD.UnusedLocalVariable)
- */
- ',
- ];
- yield 'custom annotations stay untouched 2' => [
- ['tags' => ['var']],
- '<?php
- class X
- {
- /**
- * @var Collection<Value>|Value[]
- * @ORM\ManyToMany(
- * targetEntity="\Dl\Component\DomainModel\Product\Value\AbstractValue",
- * inversedBy="externalAliases"
- * )
- */
- private $values;
- }
- ',
- ];
- yield 'left align 2' => [
- ['tags' => ['param'], 'align' => PhpdocAlignFixer::ALIGN_LEFT],
- '<?php
- /**
- * @param int $a
- * @param string $b
- *
- * @dataProvider dataJobCreation
- */
- ',
- '<?php
- /**
- * @param int $a
- * @param string $b
- *
- * @dataProvider dataJobCreation
- */
- ',
- ];
- yield 'params and data provider' => [
- ['tags' => ['param']],
- '<?php
- /**
- * @param int $a
- * @param string|null $b
- *
- * @dataProvider dataJobCreation
- */
- ',
- '<?php
- /**
- * @param int $a
- * @param string|null $b
- *
- * @dataProvider dataJobCreation
- */
- ',
- ];
- yield 'var' => [
- ['tags' => ['var']],
- '<?php
- /**
- * @var Type
- */
- ',
- '<?php
- /**
- * @var Type
- */
- ',
- ];
- yield 'type' => [
- ['tags' => ['type']],
- '<?php
- /**
- * @type Type
- */
- ',
- '<?php
- /**
- * @type Type
- */
- ',
- ];
- yield 'var and description' => [
- ['tags' => ['var']],
- '<?php
- /**
- * This is a variable.
- *
- * @var Type
- */
- ',
- '<?php
- /**
- * This is a variable.
- *
- * @var Type
- */
- ',
- ];
- yield 'var and inline description' => [
- ['tags' => ['var']],
- '<?php
- /**
- * @var Type This is a variable.
- */
- ',
- '<?php
- /**
- * @var Type This is a variable.
- */
- ',
- ];
- yield 'type and inline description' => [
- ['tags' => ['type']],
- '<?php
- /**
- * @type Type This is a variable.
- */
- ',
- '<?php
- /**
- * @type Type This is a variable.
- */
- ',
- ];
- yield 'when we are not modifying a docblock, then line endings should not change' => [
- ['tags' => ['param']],
- "<?php\r /**\r * @param Example Hello there!\r */\r",
- ];
- yield 'malformed doc block' => [
- ['tags' => ['return']],
- '<?php
- /**
- * @return string
- * */
- ',
- ];
- yield 'different indentation' => [
- ['tags' => ['param', 'return']],
- '<?php
- /**
- * @param int $limit
- * @param string $more
- *
- * @return array
- */
- /**
- * @param int $limit
- * @param string $more
- *
- * @return array
- */
- ',
- '<?php
- /**
- * @param int $limit
- * @param string $more
- *
- * @return array
- */
- /**
- * @param int $limit
- * @param string $more
- *
- * @return array
- */
- ',
- ];
- yield 'different indentation left align' => [
- ['tags' => ['param', 'return'], 'align' => PhpdocAlignFixer::ALIGN_LEFT],
- '<?php
- /**
- * @param int $limit
- * @param string $more
- *
- * @return array
- */
- /**
- * @param int $limit
- * @param string $more
- *
- * @return array
- */
- ',
- '<?php
- /**
- * @param int $limit
- * @param string $more
- *
- * @return array
- */
- /**
- * @param int $limit
- * @param string $more
- *
- * @return array
- */
- ',
- ];
- yield 'messy whitespaces 1' => [
- ['tags' => ['type']],
- "<?php\r\n\t/**\r\n\t * @type Type This is a variable.\r\n\t */",
- "<?php\r\n\t/**\r\n\t * @type Type This is a variable.\r\n\t */",
- new WhitespacesFixerConfig("\t", "\r\n"),
- ];
- yield 'messy whitespaces 2' => [
- ['tags' => ['param', 'return']],
- "<?php\r\n/**\r\n * @param int \$limit\r\n * @param string \$more\r\n *\r\n * @return array\r\n */",
- "<?php\r\n/**\r\n * @param int \$limit\r\n * @param string \$more\r\n *\r\n * @return array\r\n */",
- new WhitespacesFixerConfig("\t", "\r\n"),
- ];
- yield 'messy whitespaces 3' => [
- [],
- "<?php\r\n/**\r\n * @param int \$limit\r\n * @param string \$more\r\n *\r\n * @return array\r\n */",
- "<?php\r\n/**\r\n * @param int \$limit\r\n * @param string \$more\r\n *\r\n * @return array\r\n */",
- new WhitespacesFixerConfig("\t", "\r\n"),
- ];
- yield 'messy whitespaces 4' => [
- [],
- "<?php\n/**\n * @param int \$a\n * @param int \$b\n * ABC\n */",
- "<?php\n/**\n * @param int \$a\n * @param int \$b\n * ABC\n */",
- new WhitespacesFixerConfig(' ', "\n"),
- ];
- yield 'messy whitespaces 5' => [
- [],
- "<?php\r\n/**\r\n * @param int \$z\r\n * @param int \$b\r\n * XYZ\r\n */",
- "<?php\r\n/**\r\n * @param int \$z\r\n * @param int \$b\r\n * XYZ\r\n */",
- new WhitespacesFixerConfig(' ', "\r\n"),
- ];
- yield 'badly formatted' => [
- ['tags' => ['var']],
- "<?php\n /**\n * @var Foo */\n",
- ];
- yield 'unicode' => [
- ['tags' => ['param', 'return']],
- '<?php
- /**
- * Method test.
- *
- * @param int $foobar Description
- * @param string $foo Description
- * @param mixed $bar Description word_with_ą
- * @param int|null $test Description
- */
- $a = 1;
- /**
- * @return string
- * @SuppressWarnings(PHPMD.UnusedLocalVariable) word_with_ą
- */
- $b = 1;
- ',
- '<?php
- /**
- * Method test.
- *
- * @param int $foobar Description
- * @param string $foo Description
- * @param mixed $bar Description word_with_ą
- * @param int|null $test Description
- */
- $a = 1;
- /**
- * @return string
- * @SuppressWarnings(PHPMD.UnusedLocalVariable) word_with_ą
- */
- $b = 1;
- ',
- ];
- yield 'does align property by default' => [
- [],
- '<?php
- /**
- * @param int $foobar Description
- * @return int
- * @throws Exception
- * @var FooBar
- * @type BarFoo
- * @property string $foo Hello World
- */
- ',
- '<?php
- /**
- * @param int $foobar Description
- * @return int
- * @throws Exception
- * @var FooBar
- * @type BarFoo
- * @property string $foo Hello World
- */
- ',
- ];
- yield 'aligns property' => [
- ['tags' => ['param', 'property', 'return', 'throws', 'type', 'var']],
- '<?php
- /**
- * @param int $foobar Description
- * @return int
- * @throws Exception
- * @var FooBar
- * @type BarFoo
- * @property string $foo Hello World
- */
- ',
- '<?php
- /**
- * @param int $foobar Description
- * @return int
- * @throws Exception
- * @var FooBar
- * @type BarFoo
- * @property string $foo Hello World
- */
- ',
- ];
- yield 'does align method by default' => [
- [],
- '<?php
- /**
- * @param int $foobar Description
- * @return int
- * @throws Exception
- * @var FooBar
- * @type BarFoo
- * @method string foo(string $bar) Hello World
- */
- ',
- '<?php
- /**
- * @param int $foobar Description
- * @return int
- * @throws Exception
- * @var FooBar
- * @type BarFoo
- * @method string foo(string $bar) Hello World
- */
- ',
- ];
- yield 'aligns method' => [
- ['tags' => ['param', 'method', 'return', 'throws', 'type', 'var']],
- '<?php
- /**
- * @param int $foobar Description
- * @return int
- * @throws Exception
- * @var FooBar
- * @type BarFoo
- * @method int foo(string $bar, string ...$things, int &$baz) Description
- */
- ',
- '<?php
- /**
- * @param int $foobar Description
- * @return int
- * @throws Exception
- * @var FooBar
- * @type BarFoo
- * @method int foo(string $bar, string ...$things, int &$baz) Description
- */
- ',
- ];
- yield 'aligns method without parameters' => [
- ['tags' => ['method', 'property']],
- '<?php
- /**
- * @property string $foo Desc
- * @method int foo() Description
- */
- ',
- '<?php
- /**
- * @property string $foo Desc
- * @method int foo() Description
- */
- ',
- ];
- yield 'aligns method without parameters left align' => [
- ['tags' => ['method', 'property'], 'align' => PhpdocAlignFixer::ALIGN_LEFT],
- '<?php
- /**
- * @property string $foo Desc
- * @method int foo() Description
- */
- ',
- '<?php
- /**
- * @property string $foo Desc
- * @method int foo() Description
- */
- ',
- ];
- yield 'does not format method' => [
- ['tags' => ['method']],
- '<?php
- /**
- * @method int foo( string $bar ) Description
- */
- ',
- ];
- yield 'aligns method without return type' => [
- ['tags' => ['method', 'property']],
- '<?php
- /**
- * @property string $foo Desc
- * @method int foo() Description
- * @method bar() Descrip
- */
- ',
- '<?php
- /**
- * @property string $foo Desc
- * @method int foo() Description
- * @method bar() Descrip
- */
- ',
- ];
- yield 'aligns methods without return type' => [
- ['tags' => ['method']],
- '<?php
- /**
- * @method fooBaz() Description
- * @method bar(string $foo) Descrip
- */
- ',
- '<?php
- /**
- * @method fooBaz() Description
- * @method bar(string $foo) Descrip
- */
- ',
- ];
- yield 'aligns static and non-static methods' => [
- ['tags' => ['method', 'property']],
- '<?php
- /**
- * @property string $foo Desc1
- * @property int $bar Desc2
- * @method foo(string $foo) DescriptionFoo
- * @method static bar(string $foo) DescriptionBar
- * @method string|null baz(bool $baz) DescriptionBaz
- * @method static int|false qux(float $qux) DescriptionQux
- * @method static static quux(int $quux) DescriptionQuux
- * @method static $this quuz(bool $quuz) DescriptionQuuz
- */
- ',
- '<?php
- /**
- * @property string $foo Desc1
- * @property int $bar Desc2
- * @method foo(string $foo) DescriptionFoo
- * @method static bar(string $foo) DescriptionBar
- * @method string|null baz(bool $baz) DescriptionBaz
- * @method static int|false qux(float $qux) DescriptionQux
- * @method static static quux(int $quux) DescriptionQuux
- * @method static $this quuz(bool $quuz) DescriptionQuuz
- */
- ',
- ];
- yield 'aligns static and non-static methods left align' => [
- ['tags' => ['method', 'property'], 'align' => PhpdocAlignFixer::ALIGN_LEFT],
- '<?php
- /**
- * @property string $foo Desc1
- * @property int $bar Desc2
- * @method foo(string $foo) DescriptionFoo
- * @method static bar(string $foo) DescriptionBar
- * @method string|null baz(bool $baz) DescriptionBaz
- * @method static int|false qux(float $qux) DescriptionQux
- * @method static static quux(int $quux) DescriptionQuux
- * @method static $this quuz(bool $quuz) DescriptionQuuz
- */
- ',
- '<?php
- /**
- * @property string $foo Desc1
- * @property int $bar Desc2
- * @method foo(string $foo) DescriptionFoo
- * @method static bar(string $foo) DescriptionBar
- * @method string|null baz(bool $baz) DescriptionBaz
- * @method static int|false qux(float $qux) DescriptionQux
- * @method static static quux(int $quux) DescriptionQuux
- * @method static $this quuz(bool $quuz) DescriptionQuuz
- */
- ',
- ];
- yield 'aligns return static' => [
- ['tags' => ['param', 'return', 'throws']],
- '<?php
- /**
- * @param string $foobar Desc1
- * @param int &$baz Desc2
- * @param ?Qux $qux Desc3
- * @param int|float $quux Desc4
- * @return static DescriptionReturn
- * @throws Exception DescriptionException
- */
- ',
- '<?php
- /**
- * @param string $foobar Desc1
- * @param int &$baz Desc2
- * @param ?Qux $qux Desc3
- * @param int|float $quux Desc4
- * @return static DescriptionReturn
- * @throws Exception DescriptionException
- */
- ',
- ];
- yield 'aligns return static left align' => [
- ['tags' => ['param', 'return', 'throws'], 'align' => PhpdocAlignFixer::ALIGN_LEFT],
- '<?php
- /**
- * @param string $foobar Desc1
- * @param int &$baz Desc2
- * @param ?Qux $qux Desc3
- * @param int|float $quux Desc4
- * @return static DescriptionReturn
- * @throws Exception DescriptionException
- */
- ',
- '<?php
- /**
- * @param string $foobar Desc1
- * @param int &$baz Desc2
- * @param ?Qux $qux Desc3
- * @param int|float $quux Desc4
- * @return static DescriptionReturn
- * @throws Exception DescriptionException
- */
- ',
- ];
- yield 'does not align with empty config' => [
- ['tags' => []],
- '<?php
- /**
- * @param int $foobar Description
- * @return int
- * @throws Exception
- * @var FooBar
- * @type BarFoo
- * @property string $foo Hello World
- * @method int bar() Description
- */
- ',
- ];
- yield 'variadic params 1' => [
- ['tags' => ['param']],
- '<?php
- final class Sample
- {
- /**
- * @param int[] $a A
- * @param int &$b B
- * @param array ...$c C
- */
- public function sample2($a, &$b, ...$c)
- {
- }
- }
- ',
- '<?php
- final class Sample
- {
- /**
- * @param int[] $a A
- * @param int &$b B
- * @param array ...$c C
- */
- public function sample2($a, &$b, ...$c)
- {
- }
- }
- ',
- ];
- yield 'variadic params 2' => [
- ['tags' => ['param']],
- '<?php
- final class Sample
- {
- /**
- * @param int $a
- * @param int $b
- * @param array[] ...$c
- */
- public function sample2($a, $b, ...$c)
- {
- }
- }
- ',
- '<?php
- final class Sample
- {
- /**
- * @param int $a
- * @param int $b
- * @param array[] ...$c
- */
- public function sample2($a, $b, ...$c)
- {
- }
- }
- ',
- ];
- yield 'variadic params 3' => [
- ['tags' => ['param'], 'align' => PhpdocAlignFixer::ALIGN_LEFT],
- '<?php
- final class Sample
- {
- /**
- * @param int $a
- * @param int $b
- * @param array[] ...$c
- */
- public function sample2($a, $b, ...$c)
- {
- }
- }
- ',
- '<?php
- final class Sample
- {
- /**
- * @param int $a
- * @param int $b
- * @param array[] ...$c
- */
- public function sample2($a, $b, ...$c)
- {
- }
- }
- ',
- ];
- yield 'variadic params 4' => [
- ['tags' => ['property', 'property-read', 'property-write']],
- '<?php
- /**
- * @property string $myMagicProperty magic property
- * @property-read string $myMagicReadProperty magic read-only property
- * @property-write string $myMagicWriteProperty magic write-only property
- */
- class Foo {}
- ',
- '<?php
- /**
- * @property string $myMagicProperty magic property
- * @property-read string $myMagicReadProperty magic read-only property
- * @property-write string $myMagicWriteProperty magic write-only property
- */
- class Foo {}
- ',
- ];
- yield 'invalid PHPDoc 1' => [
- ['tags' => ['param', 'return', 'throws', 'type', 'var']],
- '<?php
- /**
- * @ Security("is_granted(\'CANCEL\', giftCard)")
- */
- ',
- ];
- yield 'invalid PHPDoc 2' => [
- ['tags' => ['param', 'return', 'throws', 'type', 'var', 'method']],
- '<?php
- /**
- * @ Security("is_granted(\'CANCEL\', giftCard)")
- */
- ',
- ];
- yield 'invalid PHPDoc 3' => [
- ['tags' => ['param', 'return', 'throws', 'type', 'var']],
- '<?php
- /**
- * @ Security("is_granted(\'CANCEL\', giftCard)")
- * @ foo bar
- * @ foo
- */
- ',
- ];
- yield 'types containing callables' => [
- [],
- '<?php
- /**
- * @param callable(Foo): Bar $x Description
- * @param callable(FooFoo): BarBar $yy Description
- */
- ',
- '<?php
- /**
- * @param callable(Foo): Bar $x Description
- * @param callable(FooFoo): BarBar $yy Description
- */
- ',
- ];
- yield 'types containing whitespace' => [
- [],
- '<?php
- /**
- * @var int $key
- * @var iterable<int, string> $value
- */
- /**
- * @param array<int, $this> $arrayOfIntegers
- * @param array<string, $this> $arrayOfStrings
- */
- ', ];
- yield 'closure types containing backslash' => [
- [],
- '<?php
- /**
- * @var string $input
- * @var \Closure $fn
- * @var \Closure(bool):int $fn2
- * @var Closure $fn3
- * @var Closure(string):string $fn4
- * @var array<string,array<string,mixed>> $data
- */
- /**
- * @param string $input
- * @param \Closure $fn
- * @param \Closure(bool):int $fn2
- * @param Closure $fn3
- * @param Closure(string):string $fn4
- * @param array<string,array<string,mixed>> $data
- */
- /**
- * @var string $value
- * @var \Closure(string): string $callback
- * @var Closure(int): bool $callback2
- */
- /**
- * @param string $value
- * @param \Closure(string): string $callback
- * @param Closure(int): bool $callback2
- */
- /**
- * @var Closure(array<int,bool>): bool $callback1
- * @var \Closure(string): string $callback2
- */
- /**
- * @param Closure(array<int,bool>): bool $callback1
- * @param \Closure(string): string $callback2
- */
- ', ];
- yield 'types parenthesized' => [
- [],
- '<?php
- /**
- * @param list<string> $allowedTypes
- * @param null|list<\Closure(mixed): (bool|null|scalar)> $allowedValues
- */
- ',
- '<?php
- /**
- * @param list<string> $allowedTypes
- * @param null|list<\Closure(mixed): (bool|null|scalar)> $allowedValues
- */
- ',
- ];
- yield 'callable types with ugly code 1' => [
- [],
- '<?php
- /**
- * @var callable $fn
- * @var callable(bool): int $fn2
- * @var Closure $fn3
- * @var Closure(string|object):string $fn4
- * @var \Closure $fn5
- * @var \Closure(int, bool): bool $fn6
- */
- ',
- '<?php
- /**
- * @var callable $fn
- * @var callable(bool): int $fn2
- * @var Closure $fn3
- * @var Closure(string|object):string $fn4
- * @var \Closure $fn5
- * @var \Closure(int, bool): bool $fn6
- */
- ',
- ];
- yield 'callable types with ugly code 2' => [
- [],
- '<?php
- /**
- * @var callable $fn
- * @var callable(bool): int $fn2
- * @var Closure $fn3
- * @var Closure(string|object):string $fn4
- * @var \Closure $fn5
- * @var \Closure(int, bool): bool $fn6
- */
- ',
- '<?php
- /**
- * @var callable $fn
- * @var callable(bool): int $fn2
- * @var Closure $fn3
- * @var Closure(string|object):string $fn4
- * @var \Closure $fn5
- * @var \Closure(int, bool): bool $fn6
- */
- ',
- ];
- yield 'CUSTOM tags' => [
- ['tags' => ['param', 'xxx-xxxxxxxxx']],
- '<?php
- /**
- * @param EngineInterface $templating
- * @param string $format
- * @xxx-xxxxxxxxx int $code An HTTP response status code
- * @param bool $debug
- * @param mixed &$reference A parameter passed by reference
- */
- ',
- '<?php
- /**
- * @param EngineInterface $templating
- * @param string $format
- * @xxx-xxxxxxxxx int $code An HTTP response status code
- * @param bool $debug
- * @param mixed &$reference A parameter passed by reference
- */
- ',
- ];
- yield 'no/2+ spaces after comment star' => [
- [],
- '<?php
- /**
- * @property string $age @Atk4\Field()
- * @property string $city @Atk4\Field()
- */
- ',
- '<?php
- /**
- * @property string $age @Atk4\Field()
- *@property string $city @Atk4\Field()
- */
- ',
- ];
- }
- }
|