File manager - Edit - /home/autoph/public_html/projects/tickets-autohub/vendor/mockery/mockery/library/Mockery/Loader/RequireLoader.php
Back
<?php /** * Mockery (https://docs.mockery.io/) * * @copyright https://github.com/mockery/mockery/blob/HEAD/COPYRIGHT.md * @license https://github.com/mockery/mockery/blob/HEAD/LICENSE BSD 3-Clause License * @link https://github.com/mockery/mockery for the canonical source repository */ namespace Mockery\Loader; use Mockery\Generator\MockDefinition; use Mockery\Loader\Loader; class RequireLoader implements Loader { protected $path; public function __construct($path = null) { $this->path = realpath($path) ?: sys_get_temp_dir(); } public function load(MockDefinition $definition) { if (class_exists($definition->getClassName(), false)) { return; } $tmpfname = $this->path . DIRECTORY_SEPARATOR . "Mockery_" . uniqid() . ".php"; file_put_contents($tmpfname, $definition->getCode()); require $tmpfname; } }
| ver. 1.4 |
.
| PHP 8.1.32 | Generation time: 0 |
proxy
|
phpinfo
|
Settings