13 lines
312 B
PHP
13 lines
312 B
PHP
<?php
|
|
|
|
namespace StubTests\Tools;
|
|
|
|
require_once 'ModelAutoloader.php';
|
|
|
|
ModelAutoloader::register();
|
|
|
|
use StubTests\TestData\Providers\ReflectionStubsSingleton;
|
|
|
|
$reflectionFileName = $argv[1];
|
|
file_put_contents(__DIR__ . "/../../$reflectionFileName", serialize(ReflectionStubsSingleton::getReflectionStubs()));
|