/** * Create an instance of the local driver. * * @param array $config * @return \Illuminate\Contracts\Filesystem\Filesystem */ public function createLocalDriver(array $config) { $permissions = isset($co
/** * Determine if the current request URL and query string matches a pattern. * * @param mixed string * @return bool */ public function fullUrlIs() {// check string like URL $url = $this->fullUrl(); foreach (func_get_args() as $patter
<?php namespace Illuminate\View\Engines; abstract class Engine { /** * The view that was last to be rendered. * * @var string */ protected $lastRendered;//The view that was last to be rendered. /** * Get the last
<?php namespace Illuminate\View\Engines; use Closure; use InvalidArgumentException; class EngineResolver {// engineResolver /** * The array of engine resolvers. * * @var array */ protected $resolvers = [];// The array of e
<?php namespace Illuminate\View\Engines; use Exception; use Throwable; use Symfony\Component\Debug\Exception\FatalThrowableError; class PhpEngine implements EngineInterface {// PhpEngine implements EngineInterface /** * Get the evaluated con
/** * Validate the guessed extension of a file upload is in a set of file extensions. * * @param string $attribute * @param mixed $value * @param array $parameters * @return bool */ protected function validate