-
-
Notifications
You must be signed in to change notification settings - Fork 624
Expand file tree
/
Copy pathGlide.php
More file actions
29 lines (26 loc) · 854 Bytes
/
Glide.php
File metadata and controls
29 lines (26 loc) · 854 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
namespace Statamic\Facades;
use Illuminate\Support\Facades\Facade;
use Statamic\Imaging\GlideManager;
/**
* @method static \League\Glide\Server server(array $config = [])
* @method static \Illuminate\Contracts\Filesystem\Filesystem cacheDisk()
* @method static bool shouldServeDirectly()
* @method static bool shouldServeByHttp()
* @method static bool isUsingHybridCaching()
* @method static string route()
* @method static string url()
* @method static \Illuminate\Contracts\Cache\Repository cacheStore()
* @method static void clearAsset($asset)
* @method static array normalizeParameters($params)
* @method static void generateHashUsing(\Closure $callback)
*
* @see \Statamic\Imaging\GlideManager
*/
class Glide extends Facade
{
protected static function getFacadeAccessor()
{
return GlideManager::class;
}
}