Files
espocrm/application/Espo/Core/Interfaces/Injectable.php
Yuri Kuznetsov 0fef57563c dev
2014-01-16 18:12:22 +02:00

12 lines
147 B
PHP

<?php
namespace Espo\Core\Interfaces;
interface Injectable
{
public function getDependencyList();
public function inject($name, $object);
}