File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ <?php
2+
3+ declare (strict_types=1 );
4+
5+ /**
6+ * This file is part of phpDocumentor.
7+ *
8+ * For the full copyright and license information, please view the LICENSE
9+ * file that was distributed with this source code.
10+ *
11+ * @link http://phpdoc.org
12+ */
13+
14+ namespace phpDocumentor \Reflection \PseudoTypes ;
15+
16+ use phpDocumentor \Reflection \PseudoType ;
17+ use phpDocumentor \Reflection \Type ;
18+ use phpDocumentor \Reflection \Types \Integer ;
19+
20+ /**
21+ * Value Object representing the type 'non-positive-int'.
22+ *
23+ * @psalm-immutable
24+ */
25+ final class NonPositiveInteger extends Integer implements PseudoType
26+ {
27+ public function underlyingType (): Type
28+ {
29+ return new Integer ();
30+ }
31+
32+ public function __toString (): string
33+ {
34+ return 'non-positive-int ' ;
35+ }
36+ }
Original file line number Diff line number Diff line change 4545use phpDocumentor \Reflection \PseudoTypes \NonEmptyLowercaseString ;
4646use phpDocumentor \Reflection \PseudoTypes \NonEmptyString ;
4747use phpDocumentor \Reflection \PseudoTypes \NonFalsyString ;
48+ use phpDocumentor \Reflection \PseudoTypes \NonPositiveInteger ;
4849use phpDocumentor \Reflection \PseudoTypes \Numeric_ ;
4950use phpDocumentor \Reflection \PseudoTypes \NumericString ;
5051use phpDocumentor \Reflection \PseudoTypes \ObjectShape ;
@@ -183,6 +184,7 @@ final class TypeResolver
183184 'non-empty-list ' => NonEmptyList::class,
184185 'non-falsy-string ' => NonFalsyString::class,
185186 'truthy-string ' => TruthyString::class,
187+ 'non-positive-int ' => NonPositiveInteger::class,
186188 ];
187189
188190 /**
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ declare (strict_types=1 );
4+
5+ /**
6+ * This file is part of phpDocumentor.
7+ *
8+ * For the full copyright and license information, please view the LICENSE
9+ * file that was distributed with this source code.
10+ *
11+ * @link http://phpdoc.org
12+ */
13+
14+ namespace phpDocumentor \Reflection \PseudoTypes ;
15+
16+ use phpDocumentor \Reflection \Types \Integer ;
17+ use PHPUnit \Framework \TestCase ;
18+
19+ final class NonPositiveIntegerTest extends TestCase
20+ {
21+ public function testCreate (): void
22+ {
23+ $ type = new NonPositiveInteger ();
24+
25+ $ this ->assertEquals (new Integer (), $ type ->underlyingType ());
26+ }
27+
28+ public function testToString (): void
29+ {
30+ $ this ->assertSame ('non-positive-int ' , (string ) (new NonPositiveInteger ()));
31+ }
32+ }
Original file line number Diff line number Diff line change 4545use phpDocumentor \Reflection \PseudoTypes \NonEmptyLowercaseString ;
4646use phpDocumentor \Reflection \PseudoTypes \NonEmptyString ;
4747use phpDocumentor \Reflection \PseudoTypes \NonFalsyString ;
48+ use phpDocumentor \Reflection \PseudoTypes \NonPositiveInteger ;
4849use phpDocumentor \Reflection \PseudoTypes \Numeric_ ;
4950use phpDocumentor \Reflection \PseudoTypes \NumericString ;
5051use phpDocumentor \Reflection \PseudoTypes \ObjectShape ;
@@ -679,6 +680,7 @@ public function provideKeywords(): array
679680 ['non-empty-array ' , NonEmptyArray::class],
680681 ['non-falsy-string ' , NonFalsyString::class],
681682 ['truthy-string ' , TruthyString::class],
683+ ['non-positive-int ' , NonPositiveInteger::class],
682684 ];
683685 }
684686
You can’t perform that action at this time.
0 commit comments