/
home
/
sjslayjy
/
public_html
/
ccbfsoution
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Routing
/
Upload File
HOME
<?php namespace Illuminate\Routing; trait FiltersControllerMiddleware { /** * Determine if the given options exclude a particular method. * * @param string $method * @param array $options * @return bool */ public static function methodExcludedByOptions($method, array $options) { return (isset($options['only']) && ! in_array($method, (array) $options['only'])) || (! empty($options['except']) && in_array($method, (array) $options['except'])); } }