Skip to content

Commit

Permalink
Update libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
barryo committed Jul 3, 2018
1 parent 6ffe2a0 commit 7333a53
Show file tree
Hide file tree
Showing 3 changed files with 141 additions and 108 deletions.
2 changes: 1 addition & 1 deletion .phpstorm.meta.php/laravel.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 2018-06-16 11:33:10.
* Generated on 2018-07-03 10:06:10.
*
* @author Barry vd. Heuvel <[email protected]>
* @see https://github.com/barryvdh/laravel-ide-helper
Expand Down
28 changes: 25 additions & 3 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.5.40 on 2018-06-16 11:33:09.
* Generated for Laravel 5.5.40 on 2018-07-03 10:06:09.
*
* This file should not be included in your code, only analyzed by your IDE!
*
Expand Down Expand Up @@ -2838,7 +2838,29 @@ public static function macroCall($method, $parameters)
*/
public static function flush()
{
return \Illuminate\Cache\ArrayStore::flush();
return \Illuminate\Cache\FileStore::flush();
}

/**
* Get the Filesystem instance.
*
* @return \Illuminate\Filesystem\Filesystem
* @static
*/
public static function getFilesystem()
{
return \Illuminate\Cache\FileStore::getFilesystem();
}

/**
* Get the working directory of the cache.
*
* @return string
* @static
*/
public static function getDirectory()
{
return \Illuminate\Cache\FileStore::getDirectory();
}

/**
Expand All @@ -2849,7 +2871,7 @@ public static function flush()
*/
public static function getPrefix()
{
return \Illuminate\Cache\ArrayStore::getPrefix();
return \Illuminate\Cache\FileStore::getPrefix();
}

}
Expand Down
Loading

0 comments on commit 7333a53

Please sign in to comment.