mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 02:39:10 -04:00
update notification
This commit is contained in:
209
_ide_helper.php
209
_ide_helper.php
@@ -3,7 +3,7 @@
|
||||
|
||||
/**
|
||||
* A helper file for Laravel, to provide autocomplete information to your IDE
|
||||
* Generated for Laravel 7.16.1 on 2020-06-17 17:36:56.
|
||||
* Generated for Laravel 7.16.1 on 2020-07-01 15:16:34.
|
||||
*
|
||||
* This file should not be included in your code, only analyzed by your IDE!
|
||||
*
|
||||
@@ -15959,6 +15959,209 @@ namespace Nexmo\Laravel\Facade {
|
||||
|
||||
}
|
||||
|
||||
namespace PragmaRX\Version\Package {
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
*/
|
||||
class Facade {
|
||||
|
||||
/**
|
||||
* Get a version.
|
||||
*
|
||||
* @param $type
|
||||
* @return string
|
||||
* @static
|
||||
*/
|
||||
public static function getGit()
|
||||
{
|
||||
/** @var \PragmaRX\Version\Package\Version $instance */
|
||||
return $instance->getGit();
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the current version.
|
||||
*
|
||||
* @return string
|
||||
* @static
|
||||
*/
|
||||
public static function current()
|
||||
{
|
||||
/** @var \PragmaRX\Version\Package\Version $instance */
|
||||
return $instance->current();
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the current object instance.
|
||||
*
|
||||
* @return \PragmaRX\Version\Package\Version
|
||||
* @static
|
||||
*/
|
||||
public static function instance()
|
||||
{
|
||||
/** @var \PragmaRX\Version\Package\Version $instance */
|
||||
return $instance->instance();
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a properly formatted version.
|
||||
*
|
||||
* @param $type
|
||||
* @return mixed|null
|
||||
* @static
|
||||
*/
|
||||
public static function format($type = null)
|
||||
{
|
||||
/** @var \PragmaRX\Version\Package\Version $instance */
|
||||
return $instance->format($type);
|
||||
}
|
||||
|
||||
/**
|
||||
* Is it in absorb mode?
|
||||
*
|
||||
* @param $type
|
||||
* @return bool
|
||||
* @static
|
||||
*/
|
||||
public static function isInAbsorbMode()
|
||||
{
|
||||
/** @var \PragmaRX\Version\Package\Version $instance */
|
||||
return $instance->isInAbsorbMode();
|
||||
}
|
||||
|
||||
/**
|
||||
* Is version in absorb mode?
|
||||
*
|
||||
* @param $type
|
||||
* @return bool
|
||||
* @static
|
||||
*/
|
||||
public static function isVersionInAbsorbMode()
|
||||
{
|
||||
/** @var \PragmaRX\Version\Package\Version $instance */
|
||||
return $instance->isVersionInAbsorbMode();
|
||||
}
|
||||
|
||||
/**
|
||||
* Is build in absorb mode?
|
||||
*
|
||||
* @param $type
|
||||
* @return bool
|
||||
* @static
|
||||
*/
|
||||
public static function isBuildInAbsorbMode()
|
||||
{
|
||||
/** @var \PragmaRX\Version\Package\Version $instance */
|
||||
return $instance->isBuildInAbsorbMode();
|
||||
}
|
||||
|
||||
/**
|
||||
* Is timestamp in absorb mode?
|
||||
*
|
||||
* @param $type
|
||||
* @return bool
|
||||
* @static
|
||||
*/
|
||||
public static function isTimestampInAbsorbMode()
|
||||
{
|
||||
/** @var \PragmaRX\Version\Package\Version $instance */
|
||||
return $instance->isTimestampInAbsorbMode();
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the config file stub.
|
||||
*
|
||||
* @param string $configFileStub
|
||||
* @static
|
||||
*/
|
||||
public static function setConfigFileStub($configFileStub)
|
||||
{
|
||||
/** @var \PragmaRX\Version\Package\Version $instance */
|
||||
return $instance->setConfigFileStub($configFileStub);
|
||||
}
|
||||
|
||||
/**
|
||||
* Load package YAML configuration.
|
||||
*
|
||||
* @param $path
|
||||
* @return \Illuminate\Support\Collection
|
||||
* @static
|
||||
*/
|
||||
public static function loadConfig($path = null)
|
||||
{
|
||||
/** @var \PragmaRX\Version\Package\Version $instance */
|
||||
return $instance->loadConfig($path);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
namespace PragmaRX\Yaml\Package {
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
*/
|
||||
class Facade {
|
||||
|
||||
/**
|
||||
* Load yaml files from directory and add to Laravel config.
|
||||
*
|
||||
* @param string $path
|
||||
* @param string $configKey
|
||||
* @return \PragmaRX\Yaml\Package\Collection
|
||||
* @static
|
||||
*/
|
||||
public static function loadToConfig($path, $configKey)
|
||||
{
|
||||
/** @var \PragmaRX\Yaml\Package\Yaml $instance */
|
||||
return $instance->loadToConfig($path, $configKey);
|
||||
}
|
||||
|
||||
/**
|
||||
* Load all yaml files from a directory.
|
||||
*
|
||||
* @param $path
|
||||
* @return \Illuminate\Support\Collection
|
||||
* @static
|
||||
*/
|
||||
public static function loadFromDirectory($path)
|
||||
{
|
||||
/** @var \PragmaRX\Yaml\Package\Yaml $instance */
|
||||
return $instance->loadFromDirectory($path);
|
||||
}
|
||||
|
||||
/**
|
||||
* Load yaml file.
|
||||
*
|
||||
* @param $file
|
||||
* @return mixed|string
|
||||
* @static
|
||||
*/
|
||||
public static function loadFile($file)
|
||||
{
|
||||
/** @var \PragmaRX\Yaml\Package\Yaml $instance */
|
||||
return $instance->loadFile($file);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get this object instance.
|
||||
*
|
||||
* @return \PragmaRX\Yaml\Package\Yaml
|
||||
* @static
|
||||
*/
|
||||
public static function instance()
|
||||
{
|
||||
/** @var \PragmaRX\Yaml\Package\Yaml $instance */
|
||||
return $instance->instance();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
namespace {
|
||||
|
||||
@@ -18909,6 +19112,10 @@ namespace {
|
||||
class Flare extends \Facade\Ignition\Facades\Flare {}
|
||||
|
||||
class Nexmo extends \Nexmo\Laravel\Facade\Nexmo {}
|
||||
|
||||
class Version extends \PragmaRX\Version\Package\Facade {}
|
||||
|
||||
class Yaml extends \PragmaRX\Yaml\Package\Facade {}
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user