replace tabs with spaces

This commit is contained in:
coderkun 2015-04-25 16:22:31 +02:00
commit 2a7ed82695
53 changed files with 6198 additions and 6198 deletions

View file

@ -51,7 +51,7 @@
/** /**
* Look for the given class and try to load it. * Look for the given class and try to load it.
* *
* @param string $fullClassName Die zu ladende Klasse * @param string $fullClassName Name of class to load
*/ */
public static function load($fullClassName) public static function load($fullClassName)
{ {

View file

@ -74,7 +74,7 @@
* Strip the namespace from a class name. * Strip the namespace from a class name.
* *
* @param string $class Name of a class including its namespace * @param string $class Name of a class including its namespace
* @return Name of the given class without its namespace * @return string Name of the given class without its namespace
*/ */
public static function stripNamespace($class) public static function stripNamespace($class)
{ {
@ -86,7 +86,7 @@
* Strip the class type from a class name. * Strip the class type from a class name.
* *
* @param string $className Name of a class * @param string $className Name of a class
* @return Name of the given class without its class type * @return string Name of the given class without its class type
*/ */
public static function stripClassType($className) public static function stripClassType($className)
{ {
@ -99,7 +99,7 @@
* to get only its name. * to get only its name.
* *
* @param string $class Full name of a class * @param string $class Full name of a class
* @return Only the name of the given class * @return string Only the name of the given class
*/ */
public static function getClassName($class) public static function getClassName($class)
{ {

View file

@ -22,7 +22,7 @@
/** /**
* Current request * Current request
* *
* @var \nre\core\Request * @var Request
*/ */
private $request; private $request;
@ -32,7 +32,7 @@
/** /**
* Construct a new linker. * Construct a new linker.
* *
* @param \nre\core\Request $request Current request * @param Request $request Current request
*/ */
function __construct(\nre\requests\WebRequest $request) function __construct(\nre\requests\WebRequest $request)
{ {
@ -213,8 +213,8 @@
/** /**
* Create a link. * Create a link.
* *
* @param \nre\core\Request $request Current request * @param Request $request Current request
* @param \nre\core\Response $response Current response * @param Response $response Current response
* @param string $anchor Anchor on target * @param string $anchor Anchor on target
* @param bool $absolute Create absolute link * @param bool $absolute Create absolute link
* @return string Created link * @return string Created link
@ -276,7 +276,7 @@
* Adapt a link to the environment. * Adapt a link to the environment.
* *
* @param string $url URL * @param string $url URL
* @param \nre\core\Request $request Current request * @param Request $request Current request
* @param bool $absolute Create absolute URL * @param bool $absolute Create absolute URL
* @return string Adapted URL * @return string Adapted URL
*/ */

View file

@ -23,7 +23,7 @@
* Database connection * Database connection
* *
* @static * @static
* @var DatabaseDriver * @var \nre\drivers\DatabaseDriver
*/ */
protected $db = NULL; protected $db = NULL;