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


PHP Command::getOutput方法代码示例

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


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

示例1: call

 /**
  *
  *
  * @param string $class
  * @return void
  */
 public function call($class)
 {
     $this->resolve($class)->run();
     if (isset($this->command)) {
         $this->command->getOutput()->writeln("<info>Gencrud:</info> {$class}");
     }
 }
开发者ID:ncrousset,项目名称:gencrud,代码行数:13,代码来源:GenCrud.php

示例2: call

 /**
  * Seed the given connection from the given path.
  *
  * @param  string  $class
  * @return void
  */
 public function call($class)
 {
     $this->resolve($class)->__invoke();
     if (isset($this->command)) {
         $this->command->getOutput()->writeln("<info>Seeded:</info> {$class}");
     }
 }
开发者ID:bryanashley,项目名称:framework,代码行数:13,代码来源:Seeder.php

示例3: seed

 /**
  * Seed the fixtures.
  */
 public function seed($table)
 {
     $data = $this->yamlLoader->loadYmlData($table);
     if ($this->command) {
         $this->command->getOutput()->writeln("<info>Seeded Fixture:</info> {$table}");
     }
     $this->process($data['settings'], $data['items']);
 }
开发者ID:stefanius,项目名称:laravel-fixtures,代码行数:11,代码来源:Seeder.php

示例4: progressIterator

 /**
  * Print progress on an iterator
  *
  * @param array    $items
  * @param callable $closure
  */
 public function progressIterator($items, callable $closure)
 {
     // Normal loop if no output
     if (!$this->command or sizeof($items) == 1) {
         foreach ($items as $value) {
             $closure($value);
         }
         return;
     }
     $output = $this->command->getOutput();
     $iterations = sizeof($items);
     // Create Progress helper
     if (class_exists('Symfony\\Component\\Console\\Helper\\ProgressBar')) {
         $progress = new \Symfony\Component\Console\Helper\ProgressBar($output, $iterations);
         $progress->start();
     } else {
         $progress = $this->command->getHelper('progress');
         $progress->start($output, $iterations);
     }
     // Loop over items
     foreach ($items as $value) {
         $progress->advance();
         $closure($value, $progress);
     }
     $progress->finish();
 }
开发者ID:anahkiasen,项目名称:fakable,代码行数:32,代码来源:Fakable.php

示例5: call

 /**
  * Seed the given connection from the given path.
  *
  * @param  string  $class
  * @return void
  */
 public function call($class)
 {
     $this->resolve($class)->run();
     $this->command->getOutput()->writeln("<info>Seeded:</info> {$class}");
 }
开发者ID:homexxhh,项目名称:iot-rest,代码行数:11,代码来源:Seeder.php

示例6: done

 /**
  * Write a done message to the output.
  * 
  * @param  \Illuminate\Console\Command  $command
  * @return void
  */
 protected function done(Command $command)
 {
     $command->getOutput()->writeln('<info>Done!</info>');
 }
开发者ID:ash-rain,项目名称:oauth2-server-laravel,代码行数:10,代码来源:TableBuilder.php


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