mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-28 06:56:05 +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);
|
|
}
|
|
|