documentation update + code fixes

This commit is contained in:
Antonio Ramirez
2017-06-11 23:25:51 +02:00
parent 4dedf111a1
commit 7344ad31df
91 changed files with 1699 additions and 827 deletions

View File

@ -34,10 +34,10 @@ trait ContainerAwareTrait
/**
* Gets a class from the container.
*
* @param string $class he class name or an alias name (e.g. `foo`) that was previously registered via [[set()]]
* or [[setSingleton()]]
* @param array $params constructor parameters
* @param array $config attributes
* @param string $class he class name or an alias name (e.g. `foo`) that was previously registered via [[set()]]
* or [[setSingleton()]]
* @param array $params constructor parameters
* @param array $config attributes
*
* @return object
*/
@ -47,7 +47,7 @@ trait ContainerAwareTrait
}
/**
* @return \Da\User\Helper\AuthHelper
* @return \Da\User\Helper\AuthHelper|object
*/
public function getAuth()
{
@ -55,7 +55,7 @@ trait ContainerAwareTrait
}
/**
* @return \Da\User\Helper\ClassMapHelper
* @return \Da\User\Helper\ClassMapHelper|object
*/
public function getClassMap()
{