Skip to content

Commit cd01e99

Browse files
authored
Merge pull request #31 from codebar-ag/feature-debug
Feature Debug
2 parents 9e8acef + 26c78aa commit cd01e99

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

composer.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,11 @@
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": {

src/Exceptions/UnableToMakeRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

src/Exceptions/UnableToSearch.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)