Files
iTop/tests/php-unit-tests/unitary-tests/application/applicationContext/MockApplicationContext.php
bdalsass 14791bf6b4 N°8148 - CAS problem when sending a link ending in &
- ApplicationContextTest mocking service
2025-07-01 15:57:45 +02:00

14 lines
239 B
PHP

<?php
namespace applicationContext;
class MockApplicationContext extends \ApplicationContext
{
public function __construct(array $applicationContextConfig)
{
parent::__construct();
$this->aValues = $applicationContextConfig;
}
}