Showing 10 of 1,204 results.

getAllConditions | Workspaces

Returns all the workspace conditions. This method automatically performs structural analysis. 1 <?php 2 3 use Illuminate \ Support \ Collection ; 4 5 public function getAllConditions ( ) : Collection ;

getAllForElse | Workspaces

Returns all the workspace for-else blocks. This method automatically performs structural analysis. 1 <?php 2 3 use Illuminate \ Support \ Collection ; 4 5 public function getAllForElse ( ) : Collection ;

Text Extraction

The document text extraction methods allow you to retrieve various information from the source template. For example, retrieving entire words at specific character offsets or their neighboring words is trivial.

getLines | Text Extraction

Retrieves a string array, containing the lines of the source document. 1 <?php 2 3 public function getLines ( ) : array ;

Thoughts on a "Guidance Engine"

A while ago I wrote this post about all the curated lists of "awesome" things you can find on GitHub. There is an "awesome" list now for almost any programming topic out there. A lot of these lists are interconnected, even if they were not...

Formatter Configuration and Usage

The Prettier Blade plugin supports many different configuration options. These options can be set my creating a new file at the root of your project (yes, another dot file, I'm sorry) called .blade.format.json . This file should exist at the root...

Pint Result Cache | Formatter Configuration and Usage

The Blade formatter will cache Pint output on a per-file basis. By default this cache is stored in node_modules/prettier-plugin-blade/_cache . The location of the cache can be changed by updating the .blade.format.json file and specifying a path...

Pint Temporary Directory | Formatter Configuration and Usage

The Blade formatter will extract the relevant PHP from Blade templates and place them in a temporary file to supply to Laravel Pint. By default this directory is located at node_modules/prettier-plugin-blade/_temp . Temporary files are...

Filter Search