DelegatingLoader
class DelegatingLoader extends Loader
DelegatingLoader delegates loading to other loaders using a loader resolver.
This loader acts as an array of LoaderInterface objects - each having a chance to load a given resource (handled by the resolver)
Methods
resolve(mixed $resource, string|null $type = null)
Finds a loader able to load an imported resource.
from Loader
load(mixed $resource, string|null $type = null)
Loads a resource.
bool
supports(mixed $resource, string|null $type = null)
Returns whether this class supports the given resource.
Details
in Loader at line line 28
LoaderResolverInterface
getResolver()
Gets the loader resolver.
in Loader at line line 36
setResolver(LoaderResolverInterface $resolver)
Sets the loader resolver.
in Loader at line line 49
mixed
import(mixed $resource, string|null $type = null)
Imports a resource.
in Loader at line line 64
LoaderInterface
resolve(mixed $resource, string|null $type = null)
Finds a loader able to load an imported resource.
at line line 31
__construct(LoaderResolverInterface $resolver)
Constructor.
at line line 39
load(mixed $resource, string|null $type = null)
Loads a resource.
at line line 51
bool
supports(mixed $resource, string|null $type = null)
Returns whether this class supports the given resource.