mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-28 15:06:06 +00:00
12 lines
147 B
PHP
12 lines
147 B
PHP
<?php
|
|
|
|
namespace Espo\Core\Interfaces;
|
|
|
|
interface Injectable
|
|
{
|
|
public function getDependencyList();
|
|
|
|
public function inject($name, $object);
|
|
}
|
|
|