Skip to content

Instantly share code, notes, and snippets.

@ppeiris
Created February 21, 2018 17:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ppeiris/dbf334fd29c4f31edbdeaa6091ee4d17 to your computer and use it in GitHub Desktop.
Save ppeiris/dbf334fd29c4f31edbdeaa6091ee4d17 to your computer and use it in GitHub Desktop.
<?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