Nelmio\Alice\Loader\NativeLoader::loadFile PHP Метод

loadFile() публичный Метод

public loadFile ( string $file, array $parameters = [], array $objects = [] ) : ObjectSet
$file string
$parameters array
$objects array
Результат Nelmio\Alice\ObjectSet
    public function loadFile(string $file, array $parameters = [], array $objects = []) : ObjectSet
    {
        return $this->fileLoader->loadFile($file, $parameters, $objects);
    }

Usage Example

Пример #1
0
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
declare (strict_types=1);
namespace Nelmio\Alice;

use Nelmio\Alice\Loader\NativeLoader;
use Symfony\Component\Console\Helper\ProgressBar;
use Symfony\Component\Console\Input\ArrayInput;
use Symfony\Component\Console\Output\ConsoleOutput;
use Symfony\Component\Console\Style\SymfonyStyle;
require_once __DIR__ . '/../../vendor-bin/profiling/vendor/autoload.php';
$blackfire = new \Blackfire\Client();
$config = new \Blackfire\Profile\Configuration();
$config->setTitle('Scenario 1.1: immutable object');
$config->setSamples(10);
$config->setReference(1);
$probe = $blackfire->createProbe($config, false);
$output = new SymfonyStyle(new ArrayInput([]), new ConsoleOutput());
$progressBar = new ProgressBar($output, $config->getSamples());
$output->writeln(sprintf('Start profiling of <info>%s</info> with <info>%d samples.</info>', $config->getTitle(), $config->getSamples()));
$loader = new NativeLoader();
for ($i = 1; $i <= $config->getSamples(); $i++) {
    $probe->enable();
    $loader->loadFile(__DIR__ . '/immutable_user.yml');
    $probe->close();
    $progressBar->advance();
}
$blackfire->endProbe($probe);
$output->success('Finished!');
All Usage Examples Of Nelmio\Alice\Loader\NativeLoader::loadFile