Файловый менеджер - Редактировать - /home/pimjdymy/public_html/safrandsi/vendor/yiisoft/yii2-shell/ShellController.php
Назад
<?php /** * @link https://www.yiiframework.com/ * @copyright Copyright (c) 2008 Yii Software LLC * @license https://www.yiiframework.com/license/ */ namespace yii\shell; use yii\console\Controller; use Psy\Shell; use Psy\Configuration; /** * Runs interactive shell. That is especially useful when developing an application and you want to try * some method of your code. * * @author Daniel Gomez Pan <pana_1990@hotmail.com> * @since 2.0 */ class ShellController extends Controller { /** * @var array include file(s) before starting tinker shell */ public $include = []; /** * @var array PsySH shell configuration array * @since 2.0.6 */ public $shellConfig = []; /** * @inheritdoc */ public function options($actionID) { return array_merge(parent::options($actionID), [ 'include' ]); } /** * Runs interactive shell */ public function actionIndex() { $config = new Configuration; $config->loadConfig($this->shellConfig); $config->getPresenter()->addCasters( $this->getCasters() ); $shell = new Shell($config); $shell->setIncludes($this->include); $shell->run(); } /** * @return array casters for psysh */ protected function getCasters() { return [ 'yii\db\ActiveRecord' => 'yii\shell\YiiCaster::castModel', ]; } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.30 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка