project_start/phpstorm-stubs/tests/Tools/dump-reflection-to-file.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()));