diff --git a/fuelphp-1.9/_benchmark/fuel/fuel/app/classes/controller/helloworld.php b/fuelphp-1.9/_benchmark/fuel/fuel/app/classes/controller/hello.php similarity index 76% rename from fuelphp-1.9/_benchmark/fuel/fuel/app/classes/controller/helloworld.php rename to fuelphp-1.9/_benchmark/fuel/fuel/app/classes/controller/hello.php index cf50f4e..acbb1ba 100644 --- a/fuelphp-1.9/_benchmark/fuel/fuel/app/classes/controller/helloworld.php +++ b/fuelphp-1.9/_benchmark/fuel/fuel/app/classes/controller/hello.php @@ -3,7 +3,7 @@ PHP-Frameworks-Bench this is a simple hello world controller to make benchmark */ -class Controller_HelloWorld extends Controller { +class Controller_Hello extends Controller { public function action_index() { return 'Hello World!'; } diff --git a/fuelphp-1.9/_benchmark/fuel/fuel/app/config/routes.php b/fuelphp-1.9/_benchmark/fuel/fuel/app/config/routes.php index b616f8e..961c82b 100644 --- a/fuelphp-1.9/_benchmark/fuel/fuel/app/config/routes.php +++ b/fuelphp-1.9/_benchmark/fuel/fuel/app/config/routes.php @@ -13,7 +13,7 @@ return array( /* *** PHP-Frameworks-Bench *** */ - 'helloworld/index' => 'helloworld/index', + 'hello/index' => 'hello/index', /** * ------------------------------------------------------------------------- diff --git a/fuelphp-1.9/_benchmark/hello_world.sh b/fuelphp-1.9/_benchmark/hello_world.sh index 87247b6..2d69368 100644 --- a/fuelphp-1.9/_benchmark/hello_world.sh +++ b/fuelphp-1.9/_benchmark/hello_world.sh @@ -1,2 +1,2 @@ #!/bin/sh -url="$base/$fw/public/index.php/helloworld/index" \ No newline at end of file +url="$base/$fw/public/index.php/hello/index" \ No newline at end of file diff --git a/ubiquity-2.4.x.dev/_benchmark/hello_world.sh b/ubiquity-2.4.x.dev/_benchmark/hello_world.sh index 51c4f0e..2355c1a 100755 --- a/ubiquity-2.4.x.dev/_benchmark/hello_world.sh +++ b/ubiquity-2.4.x.dev/_benchmark/hello_world.sh @@ -1,2 +1,2 @@ #!/bin/sh -url="$base/$fw/public/index.php?c=HelloWorldController/index" \ No newline at end of file +url="$base/$fw/public/index.php?c=HelloController/index" \ No newline at end of file diff --git a/ubiquity-2.4.x.dev/_benchmark/ubiquity/app/controllers/HelloWorldController.php b/ubiquity-2.4.x.dev/_benchmark/ubiquity/app/controllers/HelloController.php similarity index 71% rename from ubiquity-2.4.x.dev/_benchmark/ubiquity/app/controllers/HelloWorldController.php rename to ubiquity-2.4.x.dev/_benchmark/ubiquity/app/controllers/HelloController.php index 5ae506d..54e9dd7 100644 --- a/ubiquity-2.4.x.dev/_benchmark/ubiquity/app/controllers/HelloWorldController.php +++ b/ubiquity-2.4.x.dev/_benchmark/ubiquity/app/controllers/HelloController.php @@ -5,7 +5,7 @@ */ namespace controllers; -class HelloWorldController extends \Ubiquity\controllers\Controller { +class HelloController extends \Ubiquity\controllers\Controller { public function index() { echo "Hello World!"; } diff --git a/yii-2.0-basic/_benchmark/hello_world.sh b/yii-2.0-basic/_benchmark/hello_world.sh index 519292c..41bf027 100644 --- a/yii-2.0-basic/_benchmark/hello_world.sh +++ b/yii-2.0-basic/_benchmark/hello_world.sh @@ -1,2 +1,2 @@ #!/bin/sh -url="$base/$fw/web/index.php?r=helloworld/index" \ No newline at end of file +url="$base/$fw/web/index.php?r=hello/index" \ No newline at end of file diff --git a/yii-2.0-basic/_benchmark/yii2/controllers/HelloworldController.php b/yii-2.0-basic/_benchmark/yii2/controllers/HelloController.php similarity index 85% rename from yii-2.0-basic/_benchmark/yii2/controllers/HelloworldController.php rename to yii-2.0-basic/_benchmark/yii2/controllers/HelloController.php index 7085a66..f40a506 100644 --- a/yii-2.0-basic/_benchmark/yii2/controllers/HelloworldController.php +++ b/yii-2.0-basic/_benchmark/yii2/controllers/HelloController.php @@ -8,7 +8,7 @@ use yii\web\Controller; // such simple controller -class HelloworldController extends Controller { +class HelloController extends Controller { public function actionIndex() { return 'Hello World!'; }