![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/inventory.corals.io/vendor/stolz/assets/src/Laravel/ |
<?php namespace Stolz\Assets\Laravel; use Illuminate\Support\Facades\Facade as LaravelFacade; class Facade extends LaravelFacade { /** * Get the registered name of the component. * * @return string */ protected static function getFacadeAccessor() { return 'stolz.assets.group.default'; } /** * Get the instance of the assets manager for a given group. * * @param string $group * * @return \Stolz\Assets\Manager * * @throws \RuntimeException */ public static function group($group = 'default') { $binding = "stolz.assets.group.$group"; if( ! static::$app->bound($binding)) throw new \RuntimeException("Stolz\Assets: Assets group '$group' not found in the config file"); return static::$app[$binding]; } }