Skip to content
This repository has been archived by the owner on Jan 1, 2020. It is now read-only.

Commit

Permalink
Application config with PHP 5.5 ::class style
Browse files Browse the repository at this point in the history
  • Loading branch information
Maks3w committed Sep 14, 2015
1 parent a65ae36 commit 2c9e759
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion module/Application/config/module.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
* @license http://framework.zend.com/license/new-bsd New BSD License
*/

namespace Application;

return array(
'router' => array(
'routes' => array(
Expand Down Expand Up @@ -73,7 +75,7 @@
),
'controllers' => array(
'invokables' => array(
'Application\Controller\Index' => 'Application\Controller\IndexController'
'Application\Controller\Index' => Controller\IndexController::class
),
),
'view_manager' => array(
Expand Down

1 comment on commit 2c9e759

@Ocramius
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ivangl see zendframework/zf2-documentation#1516 - maybe pick it up? It's an easy fix.

Please sign in to comment.