当前位置: 首页>>代码示例>>PHP>>正文


PHP Shell::setIncludes方法代码示例

本文整理汇总了PHP中Psy\Shell::setIncludes方法的典型用法代码示例。如果您正苦于以下问题:PHP Shell::setIncludes方法的具体用法?PHP Shell::setIncludes怎么用?PHP Shell::setIncludes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Psy\Shell的用法示例。


在下文中一共展示了Shell::setIncludes方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: handle

 /**
  * Handle the command.
  *
  * @return void
  */
 public function handle()
 {
     $this->getApplication()->setCatchExceptions(false);
     $shell = new Shell();
     $shell->setIncludes($this->argument('include'));
     $shell->run();
 }
开发者ID:oxyzero,项目名称:tempest,代码行数:12,代码来源:TinkerCommand.php

示例2: testIncludes

 public function testIncludes()
 {
     $shell = new Shell();
     $this->assertEmpty($shell->getIncludes());
     $shell->setIncludes(array('foo', 'bar', 'baz'));
     $this->assertEquals(array('foo', 'bar', 'baz'), $shell->getIncludes());
 }
开发者ID:fulore,项目名称:psysh,代码行数:7,代码来源:ShellTest.php

示例3: testIncludes

 public function testIncludes()
 {
     $config = $this->getConfig(array('configFile' => __DIR__ . '/../../fixtures/empty.php'));
     $shell = new Shell($config);
     $this->assertEmpty($shell->getIncludes());
     $shell->setIncludes(array('foo', 'bar', 'baz'));
     $this->assertEquals(array('foo', 'bar', 'baz'), $shell->getIncludes());
 }
开发者ID:EnmanuelCode,项目名称:backend-laravel,代码行数:8,代码来源:ShellTest.php

示例4: actionIndex

 /**
  * Runs interactive shell
  */
 public function actionIndex()
 {
     $config = new Configuration();
     $config->getPresenter()->addCasters($this->getCasters());
     $shell = new Shell($config);
     $shell->setIncludes($this->include);
     $shell->run();
 }
开发者ID:yiisoft,项目名称:yii2-shell,代码行数:11,代码来源:ShellController.php

示例5: fire

 /**
  * @return void
  */
 public function fire()
 {
     $this->getApplication()->setCatchExceptions(false);
     $config = new Configuration();
     $config->getPresenter()->addCasters($this->getCasters());
     $shell = new Shell($config);
     $shell->addCommands($this->getCommands());
     $shell->setIncludes($this->argument('include'));
     $shell->run();
 }
开发者ID:notadd,项目名称:framework,代码行数:13,代码来源:TinkerCommand.php

示例6: bin

    /**
     * `psysh` command line executable.
     *
     * @return Closure
     */
    function bin()
    {
        return function () {
            $usageException = null;
            $input = new ArgvInput();
            try {
                $input->bind(new InputDefinition(array(new InputOption('help', 'h', InputOption::VALUE_NONE), new InputOption('config', 'c', InputOption::VALUE_REQUIRED), new InputOption('version', 'v', InputOption::VALUE_NONE), new InputOption('cwd', null, InputOption::VALUE_REQUIRED), new InputArgument('include', InputArgument::IS_ARRAY))));
            } catch (\RuntimeException $e) {
                $usageException = $e;
            }
            $config = array();
            // Handle --config
            if ($configFile = $input->getOption('config')) {
                $config['configFile'] = $configFile;
            }
            $shell = new Shell(new Configuration($config));
            // Handle --help
            if ($usageException !== null || $input->getOption('help')) {
                if ($usageException !== null) {
                    echo $usageException->getMessage() . PHP_EOL . PHP_EOL;
                }
                $version = $shell->getVersion();
                $name = basename(reset($_SERVER['argv']));
                echo <<<EOL
{$version}

Usage:
  {$name} [--version] [--help] [files...]

Options:
  --help     -h Display this help message.
  --config   -c Use an alternate PsySH config file location.
  --cwd         Use an alternate working directory.
  --version  -v Display the PsySH version.

EOL;
                exit($usageException === null ? 0 : 1);
            }
            // Handle --version
            if ($input->getOption('version')) {
                echo $shell->getVersion() . PHP_EOL;
                exit(0);
            }
            // Pass additional arguments to Shell as 'includes'
            $shell->setIncludes($input->getArgument('include'));
            try {
                // And go!
                $shell->run();
            } catch (Exception $e) {
                echo $e->getMessage() . PHP_EOL;
                // TODO: this triggers the "exited unexpectedly" logic in the
                // ForkingLoop, so we can't exit(1) after starting the shell...
                // fix this :)
                // exit(1);
            }
        };
    }
开发者ID:saj696,项目名称:pipe,代码行数:62,代码来源:functions.php

示例7: handle

 /**
  * @inheritDoc
  */
 public function handle(InputInterface $input, OutputInterface $output)
 {
     $shell = new BaseShell();
     $shell->setIncludes($input->getArgument('includes'));
     $shell->run();
 }
开发者ID:venta,项目名称:framework,代码行数:9,代码来源:Shell.php


注:本文中的Psy\Shell::setIncludes方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。