File tree Expand file tree Collapse file tree 5 files changed +5
-4
lines changed
Expand file tree Collapse file tree 5 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 7878 - ' 8.2'
7979 - ' 8.3'
8080 - ' 8.4'
81+ - ' 8.5'
8182 steps :
8283 - uses : actions/checkout@v4
8384
9798 - name : " Run Unit Tests"
9899 if : always()
99100 run : |
100- composer test
101+ composer test && composer stan
Original file line number Diff line number Diff line change 11/composer.lock
22/vendor
33/.phpunit.result.cache
4- .bash_history
5- .composer
Original file line number Diff line number Diff line change 3636 "require-dev" : {
3737 "pds/skeleton" : " ~1.0" ,
3838 "phpunit/phpunit" : " ~9.0" ,
39- "phpstan/phpstan" : " ^0.12.82 "
39+ "phpstan/phpstan" : " ^1.0 "
4040 },
4141 "autoload" : {
4242 "psr-4" : {
Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ public function perPage(int $perPage) : static
4040
4141 public function resetLimit () : static
4242 {
43+ /** @var class-string<Component\Limit> $limit*/
4344 $ limit = $ this ->driver ->getLimitClass ();
4445 $ this ->limit = new $ limit ();
4546 return $ this ;
Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ public function hasColumns() : bool
4747 public function resetColumns () : static
4848 {
4949 $ type = strrchr (static ::CLASS , '\\' ) . 'Columns ' ;
50+ /** @var class-string<Component\ModifyColumns> $class*/
5051 $ class = __NAMESPACE__ . '\\Component ' . $ type ;
5152 $ this ->columns = new $ class ($ this ->bind , $ this ->driver );
5253 return $ this ;
You can’t perform that action at this time.
0 commit comments