Showing 7 of 1,975 result(s)
Tests if any errors are present. 1 <?php 2 3 public function hasErrors () : bool ;
Tests if an error matching the provided properties exists on a specific line. Argument Description $line The line to check. $type The error type to check for. $context The error context. 1 <?php 2 3 use Stillat\BladeParser\Errors\ErrorType ; 4 ...
Runs all registered node validators against the provided node list. Argument Description $nodes The nodes to validate. 1 <?php 2 3 use Illuminate\Support\Collection ; 4 5 public function validateNodes ( 6 array $nodes 7 ) : Collection ;
Returns the number of template files discovered in the workspace. 1 <?php 2 3 public function getFileCount () : int ;
So, a while ago I wrote this post about working with Laravel and Kint. It works, but it can be a pain to manage through composer updates (losing your lock file, whatever happens), Laravel upgrades, it doesn't matter. The problem is that sometimes...
Camel casing is similar to studly case such that each word starts with a capitalized letter, with the difference being the first character is lower cased. Like the studly method, the camel method will not affect the casing of the rest of the word....
Option Result Original Order 0 1 2 3 4 5 6 7 8 9 10 11 12 SORT_REGULAR 7 6 3 1 0 5 2 11 10 9 4 8 12 SORT_NUMERIC 8 9 10 11 0 5 2 1 3 4 12 7 6