PATH:
home
/
thebhoeo
/
.trash
/
backwpup
/
vendor
/
league
/
container
/
src
/
ServiceProvider
<?php declare(strict_types=1); namespace WPMedia\BackWPup\Dependencies\League\Container\ServiceProvider; use WPMedia\BackWPup\Dependencies\League\Container\ContainerAwareTrait; abstract class AbstractServiceProvider implements ServiceProviderInterface { use ContainerAwareTrait; /** * @var string */ protected $identifier; public function getIdentifier(): string { return $this->identifier ?? get_class($this); } public function setIdentifier(string $id): ServiceProviderInterface { $this->identifier = $id; return $this; } }
[-] AbstractServiceProvider.php
[edit]
[+]
..
[-] ServiceProviderAggregate.php
[edit]
[-] BootableServiceProviderInterface.php
[edit]
[-] ServiceProviderAggregateInterface.php
[edit]
[-] ServiceProviderInterface.php
[edit]