Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
lib
unicaen
skeleton-application
Commits
102978e6
Commit
102978e6
authored
Feb 09, 2019
by
Bertrand Gauthier
Browse files
Module.php: ajout use manquant ; short array syntax.
parent
8a937734
Changes
1
Hide whitespace changes
Inline
Side-by-side
module/Application/Module.php
View file @
102978e6
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/ZendSkeletonApplication for the canonical source repository
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
namespace
Application
;
use
Zend\Mvc\ModuleRouteListener
;
use
Zend\Mvc\MvcEvent
;
use
Zend\Http\Request
as
HttpRequest
;
class
Module
{
...
...
@@ -39,12 +33,12 @@ class Module
public
function
getAutoloaderConfig
()
{
return
array
(
'Zend\Loader\StandardAutoloader'
=>
array
(
'namespaces'
=>
array
(
return
[
'Zend\Loader\StandardAutoloader'
=>
[
'namespaces'
=>
[
__NAMESPACE__
=>
__DIR__
.
'/src/'
.
__NAMESPACE__
,
)
,
)
,
)
;
]
,
]
,
]
;
}
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment