Created
February 21, 2018 17:46
-
-
Save ppeiris/dbf334fd29c4f31edbdeaa6091ee4d17 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Admin\Command\AddInterceptFactory; | |
return [ | |
[ | |
'name' => 'addintercept', | |
'route' => '[--authkey=]', | |
'description' => 'Find out all the users that need to intercept to direct the Notification Walled Garden ', | |
'short_description' => 'Add intercept', | |
'options_descriptions' => [ | |
'<package>' => 'Package filename to build', | |
'--target' => 'Name of the application directory to package; defaults to current working directory', | |
], | |
'defaults' => [ | |
'target' => getcwd(), // default to current working directory | |
], | |
'handler' => AddInterceptFactory::class, | |
], | |
]; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment