From 734f8b419d3fa6c0685355450a58d534fdafb4ff Mon Sep 17 00:00:00 2001 From: Carsten Brandt Date: Sat, 11 Jul 2015 18:05:41 +0200 Subject: [PATCH] removed duplicate declares these are now defined automatically by console application if needed. see https://github.com/yiisoft/yii2/issues/6853 --- tests/codeception/bin/_bootstrap.php | 4 ---- yii | 4 ---- 2 files changed, 8 deletions(-) diff --git a/tests/codeception/bin/_bootstrap.php b/tests/codeception/bin/_bootstrap.php index c923193..bbadc36 100644 --- a/tests/codeception/bin/_bootstrap.php +++ b/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'); diff --git a/yii b/yii index b032ebd..43aa260 100755 --- a/yii +++ b/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');