Search

Showing 7 of 1,975 result(s)

/blog/2018/04/21/laravel-5-facades#content-fake-1

The fake method will swap the currently bound queue manager instance with a fake; this is incredibly useful for testing purposes. The fake queue manager instance, by default, is an instance of "Illuminate\Support\Testing\Fakes\QueueFake".

/blog/2018/04/21/laravel-5-fluent-api-the-public-api#content-retrieving-values-with-get

The get method will return the value associated with the provided $key . If the $key does not exist, the $default value will be returned (which is null by default).

/blog/2018/04/21/laravel-5-fluent-api-the-public-api#content-getting-keyvalue-data-associations-with-getattributes

The getAttributes method simply returns an array containing all key/value pairs, representing the underlying data contained within the Fluent instance.

/blog/2018/04/21/laravel-5-fluent-api-the-public-api#content-signature-1

The signature of the getAttributes method is: public function getAttributes();

/blog/2018/04/21/laravel-5-fluent-api-the-public-api#content-signature-2

The signature of the toArray method is: public function toArray();

/blog/2018/04/21/laravel-5-fluent-api-the-public-api#content-signature-3

The signature of the jsonSerialize method is: public function jsonSerialize();