- [x] [ModuleRequest->getFunctionCaller] Correction semantique du chemin d'amorcage, utilisation de tableau

This commit is contained in:
xdrm-brackets 2016-02-05 08:35:51 +01:00
parent 7a21d7b32f
commit 2d68012cf4
2 changed files with 5 additions and 2 deletions

View File

@ -242,7 +242,7 @@
* *
*/ */
private function getFunctionCaller(){ private function getFunctionCaller(){
return '\\manager\\module\\'.$this->path['module'].'::'.$this->path['method']; return array( '\\manager\\module\\'.$this->path['module'], $this->path['method'] );
} }

View File

@ -61,6 +61,9 @@
echo '<section>'; echo '<section>';
echo 'Liste des utilisateurs: <br>'; echo 'Liste des utilisateurs: <br>';
if( $request->error != \manager\ManagerError::Success )
var_dump( \manager\ManagerError::explicit($request->error) );
else
var_dump( $users ); var_dump( $users );
echo '</section>'; echo '</section>';