Showing 10 of 2,133 results.

fake($disk = null) | Laravel 5 Facades

The fake method will replace the provided $disk with a local testing disk. The local disk will be stored in your application storage path under the sub-directory location framework/testing/disks/<DISK_NAME> . The local directory will be cleared...

persistentFake($disk = null) | Laravel 5 Facades

The persistentFake method will replace the provided $disk with a local testing disk. The local disk will be stored in your application storage path under the sub-directory location framework/testing/disks/<DISK_NAME> . The persistent local...

Directive Nodes | Parser Nodes Overview

…ive. If the parser can parse arguments following the directive's name, the argument's details will also be within the directive node. Arguments begin with an opening ( and are closed with a ) . They may have any number of parenthesis within them...

Replacing the Core Blade Compiler | Blade Compiler

…ravel itself. The main issues likely to arise are subtle differences produced by any feature that directly type-hints Laravel's Illuminate\View\Compilers\BladeCompiler class. However, extreme efforts have been made to ensure the compiler...

setPrecompilers | Blade Compiler

Sets the internal precompilers. In default setups, this is set to the value of the Illuminate\View\Compilers\BladeCompiler::$precompilers protected property. Argument Description $precompilers The precompilers. 1 <?php 2 3 public function...

setEchoHandlers | Blade Compiler

Sets and overrides all existing echo handlers. In default setups, this is set to the value of the Illuminate\View\Compilers\BladeCompiler::$echoHandlers protected property. Argument Description $handlers The echo handlers. 1 <?php 2 3 public...

Error Families | Parser Errors

The following error families may be reported: Error Family Code Parser P Validation V Compiler C Third-party extensions should not emit error codes in the parser family.