mirror of
https://github.com/espocrm/espocrm.git
synced 2026-07-01 08:26:04 +00:00
17 lines
226 B
PHP
17 lines
226 B
PHP
<?php
|
|
|
|
namespace Espo\Core\Services;
|
|
|
|
abstract class Base
|
|
{
|
|
static public $dependencies = array();
|
|
|
|
protected $injections = array();
|
|
|
|
public function inject($name, $object)
|
|
{
|
|
$this->injections[$name] = $object;
|
|
}
|
|
|
|
}
|