Skip to content

Commit 86bde68

Browse files
add Invitation feature.
1 parent 030a9e4 commit 86bde68

File tree

7 files changed

+18
-1
lines changed

7 files changed

+18
-1
lines changed

.idea/codeception.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/php.xml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/phpspec.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/phpunit.xml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/tokens-validation.iml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

composer.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,13 @@
2929
],
3030
"config": {
3131
"tokensvalidation": "HichemtabTech\\TokensValidation\\Laravel\\config\\tokensvalidation.php"
32-
}
32+
},
33+
"controllers": [
34+
{
35+
"name": "InvitationAnswererController",
36+
"path": "src/Laravel/Http/Controllers/InvitationAnswererController.php"
37+
}
38+
]
3339
}
3440
}
3541
}

src/Laravel/Providers/TokensValidationProvider.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
namespace HichemtabTech\TokensValidation\Laravel\Providers;
44

55
use HichemtabTech\TokensValidation\TokensValidation;
6+
use Illuminate\Contracts\Container\BindingResolutionException;
67
use Illuminate\Support\ServiceProvider;
78

89
class TokensValidationProvider extends ServiceProvider
@@ -11,6 +12,7 @@ class TokensValidationProvider extends ServiceProvider
1112
* Register services.
1213
*
1314
* @return void
15+
* @throws BindingResolutionException
1416
*/
1517
public function register(): void
1618
{

0 commit comments

Comments
 (0)