Showing 10 of 1,204 results.

Testing Code Changes | Contributing

The language server contains a test suite that should be be run periodically when working on the language server's parsers, formatters, and related features. The test suite can be ran by issuing the following command from the root of the project:...

Getting Kint to Work With Laravel 4.1

Kint is a PHP tool that helps ease the pain of debugging PHP (which we all know is our favorite part of the job). This is what their website has to say: Kint for PHP is a tool designed to present your debugging data in the absolutely best way...

GitHub For Windows: Sync Failed With Uncommitted Changes

…the "Sync" button without any problems! This works because the git stash command takes any files that are being tracked by git and just sets them off to the side for you. Once you stash something in git, as far as its concerned those changes are...

Facade Aliases and Importing Facades | Laravel 5 Facades

Each facade has an alias . An alias in PHP is just a shortcut to a longer class name. For example, when we use something as something else, we are creating a class alias: 1 use Some\ReallyReallyLongClassName as ShorterName; In the above example...

Using Facades | Laravel 5 Facades

…rieve an item from the cache: 1 <?php 2 3 namespace App \ Http \ Controllers ; 4 5 use Illuminate \ Support \ Facades \ Cache ; 6 7 class ExampleController extends Controller { 8 9 public function getIndex ( ) 10 { 11 $ cachedItem = Cache :: get...

Laravel 5: View Error Bags

…ewErrorBag instance that is shared with views is given the name errors . Interacting with the ViewErrorBag instance should look familiar to most developers: 1 @ if ( $ errors -> count ( ) ) 2 < div class = " alert alert-danger " > 3 < p > There...

0. Definitions. | License

…conductor masks. “The Program” refers to any copyrightable work licensed under this License. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations. To “modify” a work means to copy from or adapt all...

Filter Search