Skip to content

Commit

Permalink
phpstorm
Browse files Browse the repository at this point in the history
  • Loading branch information
barryo committed Dec 9, 2022
1 parent 6e543b1 commit 05f4d6d
Show file tree
Hide file tree
Showing 2 changed files with 288 additions and 268 deletions.
32 changes: 27 additions & 5 deletions _ide_helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

/**
* A helper file for Laravel, to provide autocomplete information to your IDE
* Generated for Laravel 8.83.25.
* Generated for Laravel 8.83.27.
*
* This file should not be included in your code, only analyzed by your IDE!
*
Expand Down Expand Up @@ -3947,8 +3947,30 @@ public static function macroCall($method, $parameters)
*/
public static function flush()
{
/** @var \Illuminate\Cache\ArrayStore $instance */
/** @var \Illuminate\Cache\FileStore $instance */
return $instance->flush();
}
/**
* Get the Filesystem instance.
*
* @return \Illuminate\Filesystem\Filesystem
* @static
*/
public static function getFilesystem()
{
/** @var \Illuminate\Cache\FileStore $instance */
return $instance->getFilesystem();
}
/**
* Get the working directory of the cache.
*
* @return string
* @static
*/
public static function getDirectory()
{
/** @var \Illuminate\Cache\FileStore $instance */
return $instance->getDirectory();
}
/**
* Get the cache key prefix.
Expand All @@ -3958,7 +3980,7 @@ public static function flush()
*/
public static function getPrefix()
{
/** @var \Illuminate\Cache\ArrayStore $instance */
/** @var \Illuminate\Cache\FileStore $instance */
return $instance->getPrefix();
}
/**
Expand All @@ -3972,7 +3994,7 @@ public static function getPrefix()
*/
public static function lock($name, $seconds = 0, $owner = null)
{
/** @var \Illuminate\Cache\ArrayStore $instance */
/** @var \Illuminate\Cache\FileStore $instance */
return $instance->lock($name, $seconds, $owner);
}
/**
Expand All @@ -3985,7 +4007,7 @@ public static function lock($name, $seconds = 0, $owner = null)
*/
public static function restoreLock($name, $owner)
{
/** @var \Illuminate\Cache\ArrayStore $instance */
/** @var \Illuminate\Cache\FileStore $instance */
return $instance->restoreLock($name, $owner);
}

Expand Down
Loading

0 comments on commit 05f4d6d

Please sign in to comment.