Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Sep 28, 2023
1 parent 5ba4d15 commit e39ecdc
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 14 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@
"cp -R node_modules/bootstrap-icons webroot/assets/",
"cp -R node_modules/bootstrap-icons/font/fonts webroot/css/ccss/"
],
"setup": "bin/cake code_completion generate && bin/cake phpstorm generate",
"annotate": "bin/cake annotate all && bin/cake annotate all -p Sandbox && bin/cake annotate all -p AuthSandbox",
"setup": "bin/cake generate code_completion && bin/cake generate phpstorm",
"annotate": "bin/cake annotate all && bin/cake annotate all -p Sandbox && bin/cake annotate all -p AuthSandbox && bin/cake annotate all -p StateMachineSandbox",
"dto": "bin/cake dto generate -p Sandbox",
"test": "phpunit",
"test-coverage": "phpunit --log-junit webroot/coverage/unitreport.xml --coverage-html webroot/coverage --coverage-clover webroot/coverage/coverage.xml",
Expand Down
24 changes: 12 additions & 12 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions config/app_custom.php
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,7 @@
'includedPlugins' => [
'Sandbox',
'AuthSandbox',
'StateMachineSandbox',
],
'typeMap' => [
],
Expand Down
1 change: 1 addition & 0 deletions src/Controller/AccountController.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

/**
* @property \App\Model\Table\UsersTable $Users
* @property \Tools\Model\Table\TokensTable $Tokens
*/
#[\AllowDynamicProperties]
class AccountController extends AppController {
Expand Down

0 comments on commit e39ecdc

Please sign in to comment.