Skip to content

Commit

Permalink
Update composer dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
libern committed Jul 6, 2016
1 parent 37c9f0f commit 9da9b51
Show file tree
Hide file tree
Showing 3 changed files with 111 additions and 111 deletions.
4 changes: 2 additions & 2 deletions .phpstorm.meta.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

/**
* PhpStorm Meta file, to provide autocomplete information for PhpStorm
* Generated on 2016-06-22.
* Generated on 2016-07-06.
*
* @author Barry vd. Heuvel <barryvdh@gmail.com>
* @see https://github.com/barryvdh/laravel-ide-helper
Expand Down Expand Up @@ -534,7 +534,7 @@
'command.ide-helper.models' instanceof \Barryvdh\LaravelIdeHelper\Console\ModelsCommand,
'command.ide-helper.meta' instanceof \Barryvdh\LaravelIdeHelper\Console\MetaCommand,
],
app('') => [
\app('') => [
'' == '@',
'events' instanceof \Illuminate\Events\Dispatcher,
'router' instanceof \Illuminate\Routing\Router,
Expand Down
26 changes: 13 additions & 13 deletions _ide_helper.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* A helper file for Laravel 5, to provide autocomplete information to your IDE
* Generated for Laravel 5.2.39 on 2016-06-22.
* Generated for Laravel 5.2.39 on 2016-07-06.
*
* @author Barry vd. Heuvel <barryvdh@gmail.com>
* @see https://github.com/barryvdh/laravel-ide-helper
Expand Down Expand Up @@ -7797,7 +7797,7 @@ public static function setTrustedProxies($proxies){
/**
* Gets the list of trusted proxies.
*
* @return array An array of trusted proxies.
* @return array An array of trusted proxies
* @static
*/
public static function getTrustedProxies(){
Expand All @@ -7821,7 +7821,7 @@ public static function setTrustedHosts($hostPatterns){
/**
* Gets the list of trusted host patterns.
*
* @return array An array of trusted host patterns.
* @return array An array of trusted host patterns
* @static
*/
public static function getTrustedHosts(){
Expand Down Expand Up @@ -8385,7 +8385,7 @@ public static function getRequestFormat($default = 'html'){
/**
* Sets the request format.
*
* @param string $format The request format.
* @param string $format The request format
* @static
*/
public static function setRequestFormat($format){
Expand Down Expand Up @@ -8451,7 +8451,7 @@ public static function getLocale(){
/**
* Checks if the request method is of specified type.
*
* @param string $method Uppercase request method (GET, POST etc).
* @param string $method Uppercase request method (GET, POST etc)
* @return bool
* @static
*/
Expand All @@ -8475,7 +8475,7 @@ public static function isMethodSafe(){
* Returns the request body content.
*
* @param bool $asResource If true, a resource will be returned
* @return string|resource The request body content or a resource to read the body stream.
* @return string|resource The request body content or a resource to read the body stream
* @throws \LogicException
* @static
*/
Expand Down Expand Up @@ -9662,7 +9662,7 @@ public static function getDrivers(){
/**
* Starts the session storage.
*
* @return bool True if session started.
* @return bool True if session started
* @throws \RuntimeException If session fails to start.
* @static
*/
Expand All @@ -9673,7 +9673,7 @@ public static function start(){
/**
* Returns the session ID.
*
* @return string The session ID.
* @return string The session ID
* @static
*/
public static function getId(){
Expand Down Expand Up @@ -9704,7 +9704,7 @@ public static function isValidId($id){
/**
* Returns the session name.
*
* @return mixed The session name.
* @return mixed The session name
* @static
*/
public static function getName(){
Expand All @@ -9731,7 +9731,7 @@ public static function setName($name){
* will leave the system settings unchanged, 0 sets the cookie
* to expire with browser session. Time is in seconds, and is
* not a Unix timestamp.
* @return bool True if session invalidated, false if error.
* @return bool True if session invalidated, false if error
* @static
*/
public static function invalidate($lifetime = null){
Expand All @@ -9742,12 +9742,12 @@ public static function invalidate($lifetime = null){
* Migrates the current session to a new session id while maintaining all
* session attributes.
*
* @param bool $destroy Whether to delete the old session or leave it to garbage collection.
* @param bool $destroy Whether to delete the old session or leave it to garbage collection
* @param int $lifetime Sets the cookie lifetime for the session cookie. A null value
* will leave the system settings unchanged, 0 sets the cookie
* to expire with browser session. Time is in seconds, and is
* not a Unix timestamp.
* @return bool True if session migrated, false if error.
* @return bool True if session migrated, false if error
* @static
*/
public static function migrate($destroy = false, $lifetime = null){
Expand Down Expand Up @@ -9803,7 +9803,7 @@ public static function has($name){
* Returns an attribute.
*
* @param string $name The attribute name
* @param mixed $default The default value if not found.
* @param mixed $default The default value if not found
* @return mixed
* @static
*/
Expand Down
Loading

0 comments on commit 9da9b51

Please sign in to comment.