mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
14 lines
239 B
PHP
14 lines
239 B
PHP
<?php
|
|
|
|
namespace applicationContext;
|
|
|
|
class MockApplicationContext extends \ApplicationContext
|
|
{
|
|
public function __construct(array $applicationContextConfig)
|
|
{
|
|
parent::__construct();
|
|
$this->aValues = $applicationContextConfig;
|
|
}
|
|
|
|
}
|