浏览代码

removed duplicate declares

these are now defined automatically by console application if needed.

see https://github.com/yiisoft/yii2/issues/6853
Carsten Brandt 10 年之前
父节点
当前提交
734f8b419d
共有 2 个文件被更改,包括 0 次插入8 次删除
  1. 0 4
      tests/codeception/bin/_bootstrap.php
  2. 0 4
      yii

+ 0 - 4
tests/codeception/bin/_bootstrap.php

@@ -2,10 +2,6 @@
 defined('YII_DEBUG') or define('YII_DEBUG', true);
 defined('YII_ENV') or define('YII_ENV', 'test');
 
-// fcgi doesn't have STDIN and STDOUT defined by default
-defined('STDIN') or define('STDIN', fopen('php://stdin', 'r'));
-defined('STDOUT') or define('STDOUT', fopen('php://stdout', 'w'));
-
 defined('YII_APP_BASE_PATH') or define('YII_APP_BASE_PATH', dirname(dirname(dirname(__DIR__))));
 
 require(YII_APP_BASE_PATH . '/vendor/autoload.php');

+ 0 - 4
yii

@@ -10,10 +10,6 @@
 
 defined('YII_DEBUG') or define('YII_DEBUG', true);
 
-// fcgi doesn't have STDIN and STDOUT defined by default
-defined('STDIN') or define('STDIN', fopen('php://stdin', 'r'));
-defined('STDOUT') or define('STDOUT', fopen('php://stdout', 'w'));
-
 require(__DIR__ . '/vendor/autoload.php');
 require(__DIR__ . '/vendor/yiisoft/yii2/Yii.php');