for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace BrightComponents\Actions;
class ActionMiddlewareOptions
{
/**
* The middleware options.
*
* @var array
*/
protected $options;
* Create a new middleware option instance.
* @param array $options
public function __construct(array &$options)
$this->options = &$options;
}
* Set the controller methods the middleware should apply to.
* @param array|string|dynamic $methods
* @return $this
public function only($methods)
$this->options['only'] = is_array($methods) ? $methods : func_get_args();
return $this;
* Set the controller methods the middleware should exclude.
public function except($methods)
$this->options['except'] = is_array($methods) ? $methods : func_get_args();