Skip to content

Commit

Permalink
Fix docBlocks for PHPStorm.
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Mar 29, 2013
1 parent 8fdd23d commit c1700d2
Show file tree
Hide file tree
Showing 159 changed files with 1,002 additions and 1,002 deletions.
8 changes: 4 additions & 4 deletions src/Illuminate/Auth/AuthManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ protected function createDriver($driver)
/**
* Create an instance of the database driver.
*
* @return Illuminate\Auth\Guard
* @return \Illuminate\Auth\Guard
*/
protected function createDatabaseDriver()
{
Expand All @@ -39,7 +39,7 @@ protected function createDatabaseDriver()
/**
* Create an instance of the database user provider.
*
* @return Illuminate\Auth\DatabaseUserProvider
* @return \Illuminate\Auth\DatabaseUserProvider
*/
protected function createDatabaseProvider()
{
Expand All @@ -56,7 +56,7 @@ protected function createDatabaseProvider()
/**
* Create an instance of the Eloquent driver.
*
* @return Illuminate\Auth\Guard
* @return \Illuminate\Auth\Guard
*/
public function createEloquentDriver()
{
Expand All @@ -68,7 +68,7 @@ public function createEloquentDriver()
/**
* Create an instance of the Eloquent user provider.
*
* @return Illuminate\Auth\EloquentUserProvider
* @return \Illuminate\Auth\EloquentUserProvider
*/
protected function createEloquentProvider()
{
Expand Down
4 changes: 2 additions & 2 deletions src/Illuminate/Auth/Console/MakeRemindersCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ class MakeRemindersCommand extends Command {
/**
* The filesystem instance.
*
* @var Illuminate\Filesystem\Filesystem
* @var \Illuminate\Filesystem\Filesystem
*/
protected $files;

/**
* Create a new reminder table command instance.
*
* @param Illuminate\Filesystem\Filesystem $files
* @param \Illuminate\Filesystem\Filesystem $files
* @return void
*/
public function __construct(Filesystem $files)
Expand Down
14 changes: 7 additions & 7 deletions src/Illuminate/Auth/DatabaseUserProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ class DatabaseUserProvider implements UserProviderInterface {
/**
* The active database connection.
*
* @param Illuminate\Database\Connection
* @param \Illuminate\Database\Connection
*/
protected $conn;

/**
* The hasher implementation.
*
* @var Illuminate\Hashing\HasherInterface
* @var \Illuminate\Hashing\HasherInterface
*/
protected $hasher;

Expand All @@ -29,8 +29,8 @@ class DatabaseUserProvider implements UserProviderInterface {
/**
* Create a new database user provider.
*
* @param Illuminate\Database\Connection $conn
* @param Illuminate\Hashing\HasherInterface $hasher
* @param \Illuminate\Database\Connection $conn
* @param \Illuminate\Hashing\HasherInterface $hasher
* @param string $table
* @return void
*/
Expand All @@ -45,7 +45,7 @@ public function __construct(Connection $conn, HasherInterface $hasher, $table)
* Retrieve a user by their unique identifier.
*
* @param mixed $identifier
* @return Illuminate\Auth\UserInterface|null
* @return \Illuminate\Auth\UserInterface|null
*/
public function retrieveByID($identifier)
{
Expand All @@ -61,7 +61,7 @@ public function retrieveByID($identifier)
* Retrieve a user by the given credentials.
*
* @param array $credentials
* @return Illuminate\Auth\UserInterface|null
* @return \Illuminate\Auth\UserInterface|null
*/
public function retrieveByCredentials(array $credentials)
{
Expand Down Expand Up @@ -92,7 +92,7 @@ public function retrieveByCredentials(array $credentials)
/**
* Validate a user against the given credentials.
*
* @param Illuminate\Auth\UserInterface $user
* @param \Illuminate\Auth\UserInterface $user
* @param array $credentials
* @return bool
*/
Expand Down
12 changes: 6 additions & 6 deletions src/Illuminate/Auth/EloquentUserProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class EloquentUserProvider implements UserProviderInterface {
/**
* The hasher implementation.
*
* @var Illuminate\Hashing\HasherInterface
* @var \Illuminate\Hashing\HasherInterface
*/
protected $hasher;

Expand All @@ -21,7 +21,7 @@ class EloquentUserProvider implements UserProviderInterface {
/**
* Create a new database user provider.
*
* @param Illuminate\Hashing\HasherInterface $hasher
* @param \Illuminate\Hashing\HasherInterface $hasher
* @param string $model
* @return void
*/
Expand All @@ -35,7 +35,7 @@ public function __construct(HasherInterface $hasher, $model)
* Retrieve a user by their unique identifier.
*
* @param mixed $identifier
* @return Illuminate\Auth\UserInterface|null
* @return \Illuminate\Auth\UserInterface|null
*/
public function retrieveByID($identifier)
{
Expand All @@ -46,7 +46,7 @@ public function retrieveByID($identifier)
* Retrieve a user by the given credentials.
*
* @param array $credentials
* @return Illuminate\Auth\UserInterface|null
* @return \Illuminate\Auth\UserInterface|null
*/
public function retrieveByCredentials(array $credentials)
{
Expand All @@ -66,7 +66,7 @@ public function retrieveByCredentials(array $credentials)
/**
* Validate a user against the given credentials.
*
* @param Illuminate\Auth\UserInterface $user
* @param \Illuminate\Auth\UserInterface $user
* @param array $credentials
* @return bool
*/
Expand All @@ -80,7 +80,7 @@ public function validateCredentials(UserInterface $user, array $credentials)
/**
* Create a new instance of the model.
*
* @return Illuminate\Database\Eloquent\Model
* @return \Illuminate\Database\Eloquent\Model
*/
public function createModel()
{
Expand Down
34 changes: 17 additions & 17 deletions src/Illuminate/Auth/Guard.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,21 @@ class Guard {
/**
* The user provider implementation.
*
* @var Illuminate\Auth\UserProviderInterface
* @var \Illuminate\Auth\UserProviderInterface
*/
protected $provider;

/**
* The session store used by the guard.
*
* @var Illuminate\Session\Store
* @var \Illuminate\Session\Store
*/
protected $session;

/**
* The Illuminate cookie creator service.
*
* @var Illuminate\Cookie\CookieJar
* @var \Illuminate\Cookie\CookieJar
*/
protected $cookie;

Expand All @@ -46,7 +46,7 @@ class Guard {
/**
* The event dispatcher instance.
*
* @var Illuminate\Events\Dispatcher
* @var \Illuminate\Events\Dispatcher
*/
protected $events;

Expand All @@ -60,8 +60,8 @@ class Guard {
/**
* Create a new authentication guard.
*
* @param Illuminate\Auth\UserProviderInterface $provider
* @param Illuminate\Session\Store $session
* @param \Illuminate\Auth\UserProviderInterface $provider
* @param \Illuminate\Session\Store $session
* @return void
*/
public function __construct(UserProviderInterface $provider,
Expand Down Expand Up @@ -94,7 +94,7 @@ public function guest()
/**
* Get the currently authenticated user.
*
* @return Illuminate\Auth\UserInterface|null
* @return \Illuminate\Auth\UserInterface|null
*/
public function user()
{
Expand Down Expand Up @@ -206,7 +206,7 @@ public function attempt(array $credentials = array(), $remember = false, $login
/**
* Log a user into the application.
*
* @param Illuminate\Auth\UserInterface $user
* @param \Illuminate\Auth\UserInterface $user
* @param bool $remember
* @return void
*/
Expand Down Expand Up @@ -240,7 +240,7 @@ public function login(UserInterface $user, $remember = false)
*
* @param mixed $id
* @param bool $remember
* @return Illuminate\Auth\UserInterface
* @return \Illuminate\Auth\UserInterface
*/
public function loginUsingId($id, $remember = false)
{
Expand Down Expand Up @@ -296,7 +296,7 @@ protected function clearUserDataFromStorage()
/**
* Get the cookie creator instance used by the guard.
*
* @return Illuminate\Cookie\CookieJar
* @return \Illuminate\Cookie\CookieJar
*/
public function getCookieJar()
{
Expand All @@ -311,7 +311,7 @@ public function getCookieJar()
/**
* Set the cookie creator instance used by the guard.
*
* @param Illuminate\Cookie\CookieJar $cookie
* @param \Illuminate\Cookie\CookieJar $cookie
* @return void
*/
public function setCookieJar(CookieJar $cookie)
Expand All @@ -322,7 +322,7 @@ public function setCookieJar(CookieJar $cookie)
/**
* Get the event dispatcher instance.
*
* @return Illuminate\Events\Dispatcher
* @return \Illuminate\Events\Dispatcher
*/
public function getDispatcher()
{
Expand All @@ -332,7 +332,7 @@ public function getDispatcher()
/**
* Set the event dispatcher instance.
*
* @param Illuminate\Events\Dispatcher
* @param \Illuminate\Events\Dispatcher
*/
public function setDispatcher(Dispatcher $events)
{
Expand All @@ -342,7 +342,7 @@ public function setDispatcher(Dispatcher $events)
/**
* Get the session store used by the guard.
*
* @return Illuminate\Session\Store
* @return \Illuminate\Session\Store
*/
public function getSession()
{
Expand All @@ -362,7 +362,7 @@ public function getQueuedCookies()
/**
* Get the user provider used by the guard.
*
* @return Illuminate\Auth\UserProviderInterface
* @return \Illuminate\Auth\UserProviderInterface
*/
public function getProvider()
{
Expand All @@ -372,7 +372,7 @@ public function getProvider()
/**
* Return the currently cached user of the application.
*
* @return Illuminate\Auth\UserInterface|null
* @return \Illuminate\Auth\UserInterface|null
*/
public function getUser()
{
Expand All @@ -382,7 +382,7 @@ public function getUser()
/**
* Set the current user of the application.
*
* @param Illuminate\Auth\UserInterface $user
* @param \Illuminate\Auth\UserInterface $user
* @return void
*/
public function setUser(UserInterface $user)
Expand Down
14 changes: 7 additions & 7 deletions src/Illuminate/Auth/Reminders/DatabaseReminderRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class DatabaseReminderRepository implements ReminderRepositoryInterface {
/**
* The database connection instance.
*
* @var Illuminate\Database\Connection
* @var \Illuminate\Database\Connection
*/
protected $connection;

Expand All @@ -29,7 +29,7 @@ class DatabaseReminderRepository implements ReminderRepositoryInterface {
/**
* Create a new reminder repository instance.
*
* @var Illuminate\Database\Connection $connection
* @var \Illuminate\Database\Connection $connection
* @return void
*/
public function __construct(Connection $connection, $table, $hashKey)
Expand All @@ -42,7 +42,7 @@ public function __construct(Connection $connection, $table, $hashKey)
/**
* Create a new reminder record and token.
*
* @param Illuminate\Auth\RemindableInterface $user
* @param \Illuminate\Auth\RemindableInterface $user
* @return string
*/
public function create(RemindableInterface $user)
Expand Down Expand Up @@ -74,7 +74,7 @@ protected function getPayload($email, $token)
/**
* Determine if a reminder record exists and is valid.
*
* @param Illuminate\Auth\RemindableInterface $user
* @param \Illuminate\Auth\RemindableInterface $user
* @param string $token
* @return bool
*/
Expand Down Expand Up @@ -124,7 +124,7 @@ public function delete($token)
/**
* Create a new token for the user.
*
* @param Illuminate\Auth\RemindableInterface $user
* @param \Illuminate\Auth\RemindableInterface $user
* @return string
*/
public function createNewToken(RemindableInterface $user)
Expand All @@ -139,7 +139,7 @@ public function createNewToken(RemindableInterface $user)
/**
* Begin a new database query against the table.
*
* @return Illuminate\Database\Query\Builder
* @return \Illuminate\Database\Query\Builder
*/
protected function getTable()
{
Expand All @@ -149,7 +149,7 @@ protected function getTable()
/**
* Get the database connection instance.
*
* @return Illuminate\Database\Connection
* @return \Illuminate\Database\Connection
*/
public function getConnection()
{
Expand Down
Loading

0 comments on commit c1700d2

Please sign in to comment.