File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 4848 "format" : " vendor/bin/php-cs-fixer fix --allow-risky=yes"
4949 },
5050 "config" : {
51- "sort-packages" : true
51+ "sort-packages" : true ,
52+ "allow-plugins" : {
53+ "phpstan/extension-installer" : true ,
54+ "composer/package-versions-deprecated" : true
55+ }
5256 },
5357 "extra" : {
5458 "laravel" : {
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ public static function create(): self
1111 return new static (
1212 'You are not authorized. ' .
1313 'Make sure you are logged in with the correct credentials. ' .
14- 'Try to use "->login()" before you make other requests. '
14+ 'Try to use "->login()" before you make other requests. ' ,
1515 );
1616 }
1717}
Original file line number Diff line number Diff line change @@ -18,15 +18,15 @@ public static function invalidPageNumber(int $page): self
1818 {
1919 return new static (
2020 'You need to specify page number greater than zero. ' .
21- "Following is not valid: \"->page( {$ page }) \""
21+ "Following is not valid: \"->page( {$ page }) \"" ,
2222 );
2323 }
2424
2525 public static function invalidPerPageNumber (int $ perPage ): self
2626 {
2727 return new static (
2828 'You need to specify per page number greater than zero. ' .
29- "Following is not valid: \"->perPage( {$ perPage }) \""
29+ "Following is not valid: \"->perPage( {$ perPage }) \"" ,
3030 );
3131 }
3232}
You can’t perform that action at this time.
0 commit comments