mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-14 22:28:42 +02: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;
|
|
}
|
|
|
|
}
|