Showing 10 of 2,133 results.

License

Search Report for Statamic is free software, released under the MIT license.Copyright (c) <Johnathon Koster> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the...

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:...

PHP Slow Response Times

When developing PHP applications locally, sometimes the performance is not as great as it could be, especially when working with frameworks such as Laravel or Symphony. One place to start looking to gain some performance is the realpath_cache_size...

Notes on Blade | Laravel 5 Facades

Most facades request a concrete class implementation from the service container based off of some abstract string representation. However, the Blade facade retrieve an "Illuminate\View\Engines\EngineResolver" instance from the...

Laravel Artisan Generator Command: The make:provider Command

The make:provider command can be used to quickly create new service providers for your application. It accepts only the name to be used for the newly generated service provider class and file. Newly generated providers are stored in the...

Laravel Miscellaneous Helper Function: object_get

object_get($object, $key, $default = null) The object_get allows developers to retrieve properties from a given $object using dot notation. This is useful in situations where it can not be guaranteed that a supplied object will have a given...