From 112d7d450f1868b003adf2be079cf697716c1ed5 Mon Sep 17 00:00:00 2001 From: Bruno Gaspar Date: Fri, 7 Feb 2020 17:27:44 +0000 Subject: [PATCH] chore: Release v3.0.4 Signed-off-by: Bruno Gaspar --- CHANGELOG.md | 6 ++++++ src/Activations/ActivationInterface.php | 2 +- src/Activations/ActivationRepositoryInterface.php | 2 +- src/Activations/EloquentActivation.php | 2 +- src/Activations/IlluminateActivationRepository.php | 2 +- src/Checkpoints/ActivationCheckpoint.php | 2 +- src/Checkpoints/AuthenticatedCheckpoint.php | 2 +- src/Checkpoints/CheckpointInterface.php | 2 +- src/Checkpoints/NotActivatedException.php | 2 +- src/Checkpoints/ThrottleCheckpoint.php | 2 +- src/Checkpoints/ThrottlingException.php | 2 +- src/Cookies/CookieInterface.php | 2 +- src/Cookies/IlluminateCookie.php | 2 +- src/Cookies/NativeCookie.php | 2 +- src/Cookies/NullCookie.php | 2 +- src/Hashing/BcryptHasher.php | 2 +- src/Hashing/CallbackHasher.php | 2 +- src/Hashing/Hasher.php | 2 +- src/Hashing/HasherInterface.php | 2 +- src/Hashing/NativeHasher.php | 2 +- src/Hashing/Sha256Hasher.php | 2 +- src/Hashing/WhirlpoolHasher.php | 2 +- src/Laravel/Facades/Activation.php | 2 +- src/Laravel/Facades/Reminder.php | 2 +- src/Laravel/Facades/Sentinel.php | 2 +- src/Laravel/SentinelServiceProvider.php | 2 +- src/Native/ConfigRepository.php | 2 +- src/Native/Facades/Sentinel.php | 2 +- src/Native/SentinelBootstrapper.php | 2 +- src/Permissions/PermissibleInterface.php | 2 +- src/Permissions/PermissibleTrait.php | 2 +- src/Permissions/PermissionsInterface.php | 2 +- src/Permissions/PermissionsTrait.php | 2 +- src/Permissions/StandardPermissions.php | 2 +- src/Permissions/StrictPermissions.php | 2 +- src/Persistences/EloquentPersistence.php | 2 +- src/Persistences/IlluminatePersistenceRepository.php | 2 +- src/Persistences/PersistableInterface.php | 2 +- src/Persistences/PersistenceInterface.php | 2 +- src/Persistences/PersistenceRepositoryInterface.php | 2 +- src/Reminders/EloquentReminder.php | 2 +- src/Reminders/IlluminateReminderRepository.php | 2 +- src/Reminders/ReminderRepositoryInterface.php | 2 +- src/Roles/EloquentRole.php | 2 +- src/Roles/IlluminateRoleRepository.php | 2 +- src/Roles/RoleInterface.php | 2 +- src/Roles/RoleRepositoryInterface.php | 2 +- src/Roles/RoleableInterface.php | 2 +- src/Sentinel.php | 2 +- src/Sessions/IlluminateSession.php | 2 +- src/Sessions/NativeSession.php | 2 +- src/Sessions/SessionInterface.php | 2 +- src/Throttling/EloquentThrottle.php | 2 +- src/Throttling/IlluminateThrottleRepository.php | 2 +- src/Throttling/ThrottleRepositoryInterface.php | 2 +- src/Users/EloquentUser.php | 2 +- src/Users/IlluminateUserRepository.php | 2 +- src/Users/UserInterface.php | 2 +- src/Users/UserRepositoryInterface.php | 2 +- src/config/config.php | 2 +- .../2014_07_02_230147_migration_cartalyst_sentinel.php | 2 +- tests/Activations/EloquentActivationTest.php | 2 +- tests/Activations/IlluminateActivationRepositoryTest.php | 2 +- tests/Checkpoints/ActivationCheckpointTest.php | 2 +- tests/Checkpoints/ThrottleCheckpointTest.php | 2 +- tests/Cookies/IlluminateCookieTest.php | 2 +- tests/Cookies/NativeCookieTest.php | 2 +- tests/Cookies/NullCookieTest.php | 2 +- tests/Hashing/BaseHashingTest.php | 2 +- tests/Hashing/BcryptHasherTest.php | 2 +- tests/Hashing/CallbackHasherTest.php | 2 +- tests/Hashing/NativeHasherTest.php | 2 +- tests/Hashing/Sha256HasherTest.php | 2 +- tests/Hashing/WhirlpoolHasherTest.php | 2 +- tests/Native/SentinelBootstrapperTest.php | 2 +- tests/Permissions/PermissibleTraitTest.php | 2 +- tests/Permissions/PermissionsTraitTest.php | 2 +- tests/Permissions/StandardPermissionsTest.php | 2 +- tests/Permissions/StrictPermissionsTest.php | 2 +- tests/Persistences/EloquentPersistenceTest.php | 2 +- tests/Persistences/IlluminatePersistenceRepositoryTest.php | 2 +- tests/Reminders/EloquentReminderTest.php | 2 +- tests/Reminders/IlluminateReminderRepositoryTest.php | 2 +- tests/Roles/EloquentRoleTest.php | 2 +- tests/Roles/IlluminateRoleRepositoryTest.php | 2 +- tests/SentinelTest.php | 2 +- tests/Sessions/IlluminateSessionTest.php | 2 +- tests/Sessions/NativeSessionTest.php | 2 +- tests/Throttling/IlluminateThrottleRepositoryTest.php | 2 +- tests/Users/EloquentUserTest.php | 2 +- tests/Users/IlluminateUserRepositoryTest.php | 2 +- 91 files changed, 96 insertions(+), 90 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c796813..b10f532b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +### v3.0.4 - 2020-02-07 + +`ADDED` + +- The `inAnyRole` to be called statically, `Sentinel::inAnyRole($role)` + ### v3.0.3 - 2019-09-26 `FIXED` diff --git a/src/Activations/ActivationInterface.php b/src/Activations/ActivationInterface.php index bb948435..412011df 100644 --- a/src/Activations/ActivationInterface.php +++ b/src/Activations/ActivationInterface.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Activations/ActivationRepositoryInterface.php b/src/Activations/ActivationRepositoryInterface.php index 1b89ed47..fc0446f8 100644 --- a/src/Activations/ActivationRepositoryInterface.php +++ b/src/Activations/ActivationRepositoryInterface.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Activations/EloquentActivation.php b/src/Activations/EloquentActivation.php index 0e50b602..39b662b5 100644 --- a/src/Activations/EloquentActivation.php +++ b/src/Activations/EloquentActivation.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Activations/IlluminateActivationRepository.php b/src/Activations/IlluminateActivationRepository.php index ccbddf10..7398d2c3 100644 --- a/src/Activations/IlluminateActivationRepository.php +++ b/src/Activations/IlluminateActivationRepository.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Checkpoints/ActivationCheckpoint.php b/src/Checkpoints/ActivationCheckpoint.php index 5e5d09c8..2f64ed28 100644 --- a/src/Checkpoints/ActivationCheckpoint.php +++ b/src/Checkpoints/ActivationCheckpoint.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Checkpoints/AuthenticatedCheckpoint.php b/src/Checkpoints/AuthenticatedCheckpoint.php index e725be1e..6d5ed4bf 100644 --- a/src/Checkpoints/AuthenticatedCheckpoint.php +++ b/src/Checkpoints/AuthenticatedCheckpoint.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Checkpoints/CheckpointInterface.php b/src/Checkpoints/CheckpointInterface.php index 1ae099cc..722f1afb 100644 --- a/src/Checkpoints/CheckpointInterface.php +++ b/src/Checkpoints/CheckpointInterface.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Checkpoints/NotActivatedException.php b/src/Checkpoints/NotActivatedException.php index c65b3c57..94345420 100644 --- a/src/Checkpoints/NotActivatedException.php +++ b/src/Checkpoints/NotActivatedException.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Checkpoints/ThrottleCheckpoint.php b/src/Checkpoints/ThrottleCheckpoint.php index 71bf7b8e..09a9a938 100644 --- a/src/Checkpoints/ThrottleCheckpoint.php +++ b/src/Checkpoints/ThrottleCheckpoint.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Checkpoints/ThrottlingException.php b/src/Checkpoints/ThrottlingException.php index f3c3a11a..1e1d509a 100644 --- a/src/Checkpoints/ThrottlingException.php +++ b/src/Checkpoints/ThrottlingException.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Cookies/CookieInterface.php b/src/Cookies/CookieInterface.php index 6d484d50..1030f528 100644 --- a/src/Cookies/CookieInterface.php +++ b/src/Cookies/CookieInterface.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Cookies/IlluminateCookie.php b/src/Cookies/IlluminateCookie.php index 15305033..248d5bae 100644 --- a/src/Cookies/IlluminateCookie.php +++ b/src/Cookies/IlluminateCookie.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Cookies/NativeCookie.php b/src/Cookies/NativeCookie.php index 64d4125d..6828c7ee 100644 --- a/src/Cookies/NativeCookie.php +++ b/src/Cookies/NativeCookie.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Cookies/NullCookie.php b/src/Cookies/NullCookie.php index fe0e3ab0..955e8e25 100644 --- a/src/Cookies/NullCookie.php +++ b/src/Cookies/NullCookie.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Hashing/BcryptHasher.php b/src/Hashing/BcryptHasher.php index f4fd7dd8..54bee8be 100644 --- a/src/Hashing/BcryptHasher.php +++ b/src/Hashing/BcryptHasher.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Hashing/CallbackHasher.php b/src/Hashing/CallbackHasher.php index 78ec2896..fc60cdbf 100644 --- a/src/Hashing/CallbackHasher.php +++ b/src/Hashing/CallbackHasher.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Hashing/Hasher.php b/src/Hashing/Hasher.php index 98998076..1807dd8e 100644 --- a/src/Hashing/Hasher.php +++ b/src/Hashing/Hasher.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Hashing/HasherInterface.php b/src/Hashing/HasherInterface.php index b811adf4..9667f422 100644 --- a/src/Hashing/HasherInterface.php +++ b/src/Hashing/HasherInterface.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Hashing/NativeHasher.php b/src/Hashing/NativeHasher.php index c28a19eb..3a49f2a1 100644 --- a/src/Hashing/NativeHasher.php +++ b/src/Hashing/NativeHasher.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Hashing/Sha256Hasher.php b/src/Hashing/Sha256Hasher.php index df6f60cf..14d87414 100644 --- a/src/Hashing/Sha256Hasher.php +++ b/src/Hashing/Sha256Hasher.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Hashing/WhirlpoolHasher.php b/src/Hashing/WhirlpoolHasher.php index 59f12d46..9f7c7cdc 100644 --- a/src/Hashing/WhirlpoolHasher.php +++ b/src/Hashing/WhirlpoolHasher.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Laravel/Facades/Activation.php b/src/Laravel/Facades/Activation.php index 27a3b145..a036630d 100644 --- a/src/Laravel/Facades/Activation.php +++ b/src/Laravel/Facades/Activation.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Laravel/Facades/Reminder.php b/src/Laravel/Facades/Reminder.php index 5c26e37c..fad7ecec 100644 --- a/src/Laravel/Facades/Reminder.php +++ b/src/Laravel/Facades/Reminder.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Laravel/Facades/Sentinel.php b/src/Laravel/Facades/Sentinel.php index 43bd4fdb..c15b8107 100644 --- a/src/Laravel/Facades/Sentinel.php +++ b/src/Laravel/Facades/Sentinel.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Laravel/SentinelServiceProvider.php b/src/Laravel/SentinelServiceProvider.php index be0ca36c..8e7f0066 100644 --- a/src/Laravel/SentinelServiceProvider.php +++ b/src/Laravel/SentinelServiceProvider.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Native/ConfigRepository.php b/src/Native/ConfigRepository.php index a30c7f79..05dace92 100644 --- a/src/Native/ConfigRepository.php +++ b/src/Native/ConfigRepository.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Native/Facades/Sentinel.php b/src/Native/Facades/Sentinel.php index beb32e8c..d4e3c4f0 100644 --- a/src/Native/Facades/Sentinel.php +++ b/src/Native/Facades/Sentinel.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Native/SentinelBootstrapper.php b/src/Native/SentinelBootstrapper.php index 933e8722..373d198e 100644 --- a/src/Native/SentinelBootstrapper.php +++ b/src/Native/SentinelBootstrapper.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Permissions/PermissibleInterface.php b/src/Permissions/PermissibleInterface.php index b0097592..3eabbe1e 100644 --- a/src/Permissions/PermissibleInterface.php +++ b/src/Permissions/PermissibleInterface.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Permissions/PermissibleTrait.php b/src/Permissions/PermissibleTrait.php index 9a47b982..672df7c5 100644 --- a/src/Permissions/PermissibleTrait.php +++ b/src/Permissions/PermissibleTrait.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Permissions/PermissionsInterface.php b/src/Permissions/PermissionsInterface.php index ba6fc23b..b465a759 100644 --- a/src/Permissions/PermissionsInterface.php +++ b/src/Permissions/PermissionsInterface.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Permissions/PermissionsTrait.php b/src/Permissions/PermissionsTrait.php index 7f5ed9c0..061d1ed0 100644 --- a/src/Permissions/PermissionsTrait.php +++ b/src/Permissions/PermissionsTrait.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Permissions/StandardPermissions.php b/src/Permissions/StandardPermissions.php index ecf8a369..3392b750 100644 --- a/src/Permissions/StandardPermissions.php +++ b/src/Permissions/StandardPermissions.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Permissions/StrictPermissions.php b/src/Permissions/StrictPermissions.php index e12c356a..ad4ee946 100644 --- a/src/Permissions/StrictPermissions.php +++ b/src/Permissions/StrictPermissions.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Persistences/EloquentPersistence.php b/src/Persistences/EloquentPersistence.php index a55e0d9c..093a3687 100644 --- a/src/Persistences/EloquentPersistence.php +++ b/src/Persistences/EloquentPersistence.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Persistences/IlluminatePersistenceRepository.php b/src/Persistences/IlluminatePersistenceRepository.php index 94d9da08..b965d0a4 100644 --- a/src/Persistences/IlluminatePersistenceRepository.php +++ b/src/Persistences/IlluminatePersistenceRepository.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Persistences/PersistableInterface.php b/src/Persistences/PersistableInterface.php index 8f228ec2..df18a231 100644 --- a/src/Persistences/PersistableInterface.php +++ b/src/Persistences/PersistableInterface.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Persistences/PersistenceInterface.php b/src/Persistences/PersistenceInterface.php index 651e6ec0..1c6494e3 100644 --- a/src/Persistences/PersistenceInterface.php +++ b/src/Persistences/PersistenceInterface.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Persistences/PersistenceRepositoryInterface.php b/src/Persistences/PersistenceRepositoryInterface.php index 3b2ffae7..7b239d17 100644 --- a/src/Persistences/PersistenceRepositoryInterface.php +++ b/src/Persistences/PersistenceRepositoryInterface.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Reminders/EloquentReminder.php b/src/Reminders/EloquentReminder.php index 615013f7..00688a99 100644 --- a/src/Reminders/EloquentReminder.php +++ b/src/Reminders/EloquentReminder.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Reminders/IlluminateReminderRepository.php b/src/Reminders/IlluminateReminderRepository.php index bb74075a..93af6f2f 100644 --- a/src/Reminders/IlluminateReminderRepository.php +++ b/src/Reminders/IlluminateReminderRepository.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Reminders/ReminderRepositoryInterface.php b/src/Reminders/ReminderRepositoryInterface.php index 0e991bd6..63b89cc7 100644 --- a/src/Reminders/ReminderRepositoryInterface.php +++ b/src/Reminders/ReminderRepositoryInterface.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Roles/EloquentRole.php b/src/Roles/EloquentRole.php index f5233a92..01b6fe15 100644 --- a/src/Roles/EloquentRole.php +++ b/src/Roles/EloquentRole.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Roles/IlluminateRoleRepository.php b/src/Roles/IlluminateRoleRepository.php index 7031e3c2..c0b436f2 100644 --- a/src/Roles/IlluminateRoleRepository.php +++ b/src/Roles/IlluminateRoleRepository.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Roles/RoleInterface.php b/src/Roles/RoleInterface.php index 65d2f3e0..66e34d93 100644 --- a/src/Roles/RoleInterface.php +++ b/src/Roles/RoleInterface.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Roles/RoleRepositoryInterface.php b/src/Roles/RoleRepositoryInterface.php index 75adfffa..163a631d 100644 --- a/src/Roles/RoleRepositoryInterface.php +++ b/src/Roles/RoleRepositoryInterface.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Roles/RoleableInterface.php b/src/Roles/RoleableInterface.php index 09f4c623..24b48a76 100644 --- a/src/Roles/RoleableInterface.php +++ b/src/Roles/RoleableInterface.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Sentinel.php b/src/Sentinel.php index d0795ee0..11042596 100644 --- a/src/Sentinel.php +++ b/src/Sentinel.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Sessions/IlluminateSession.php b/src/Sessions/IlluminateSession.php index d6fd6a9c..51fd1d4e 100644 --- a/src/Sessions/IlluminateSession.php +++ b/src/Sessions/IlluminateSession.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Sessions/NativeSession.php b/src/Sessions/NativeSession.php index f8c12ba6..5acd91d5 100644 --- a/src/Sessions/NativeSession.php +++ b/src/Sessions/NativeSession.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Sessions/SessionInterface.php b/src/Sessions/SessionInterface.php index 8af712d2..46bfba75 100644 --- a/src/Sessions/SessionInterface.php +++ b/src/Sessions/SessionInterface.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Throttling/EloquentThrottle.php b/src/Throttling/EloquentThrottle.php index 97fa3a5a..c94649a2 100644 --- a/src/Throttling/EloquentThrottle.php +++ b/src/Throttling/EloquentThrottle.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Throttling/IlluminateThrottleRepository.php b/src/Throttling/IlluminateThrottleRepository.php index 4fd54b82..ed821595 100644 --- a/src/Throttling/IlluminateThrottleRepository.php +++ b/src/Throttling/IlluminateThrottleRepository.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Throttling/ThrottleRepositoryInterface.php b/src/Throttling/ThrottleRepositoryInterface.php index da8204da..4ec99573 100644 --- a/src/Throttling/ThrottleRepositoryInterface.php +++ b/src/Throttling/ThrottleRepositoryInterface.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Users/EloquentUser.php b/src/Users/EloquentUser.php index 662c63f4..8b94cc5c 100644 --- a/src/Users/EloquentUser.php +++ b/src/Users/EloquentUser.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Users/IlluminateUserRepository.php b/src/Users/IlluminateUserRepository.php index 8a8a914d..e88d6117 100644 --- a/src/Users/IlluminateUserRepository.php +++ b/src/Users/IlluminateUserRepository.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Users/UserInterface.php b/src/Users/UserInterface.php index 8322e6a5..6f330669 100644 --- a/src/Users/UserInterface.php +++ b/src/Users/UserInterface.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/Users/UserRepositoryInterface.php b/src/Users/UserRepositoryInterface.php index ad2f45fc..28376eee 100644 --- a/src/Users/UserRepositoryInterface.php +++ b/src/Users/UserRepositoryInterface.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/config/config.php b/src/config/config.php index a84fcaaa..b3619fad 100644 --- a/src/config/config.php +++ b/src/config/config.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/src/migrations/2014_07_02_230147_migration_cartalyst_sentinel.php b/src/migrations/2014_07_02_230147_migration_cartalyst_sentinel.php index 80c6a2b1..57ab3d66 100644 --- a/src/migrations/2014_07_02_230147_migration_cartalyst_sentinel.php +++ b/src/migrations/2014_07_02_230147_migration_cartalyst_sentinel.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/tests/Activations/EloquentActivationTest.php b/tests/Activations/EloquentActivationTest.php index b654721b..d68855e2 100644 --- a/tests/Activations/EloquentActivationTest.php +++ b/tests/Activations/EloquentActivationTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/tests/Activations/IlluminateActivationRepositoryTest.php b/tests/Activations/IlluminateActivationRepositoryTest.php index e0d618e6..d681e5b0 100644 --- a/tests/Activations/IlluminateActivationRepositoryTest.php +++ b/tests/Activations/IlluminateActivationRepositoryTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/tests/Checkpoints/ActivationCheckpointTest.php b/tests/Checkpoints/ActivationCheckpointTest.php index bd5e4ecd..1702e197 100644 --- a/tests/Checkpoints/ActivationCheckpointTest.php +++ b/tests/Checkpoints/ActivationCheckpointTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/tests/Checkpoints/ThrottleCheckpointTest.php b/tests/Checkpoints/ThrottleCheckpointTest.php index 00b25370..456cb275 100644 --- a/tests/Checkpoints/ThrottleCheckpointTest.php +++ b/tests/Checkpoints/ThrottleCheckpointTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/tests/Cookies/IlluminateCookieTest.php b/tests/Cookies/IlluminateCookieTest.php index 625a792a..b5a9df62 100644 --- a/tests/Cookies/IlluminateCookieTest.php +++ b/tests/Cookies/IlluminateCookieTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/tests/Cookies/NativeCookieTest.php b/tests/Cookies/NativeCookieTest.php index 5e31b2b4..869a9b17 100644 --- a/tests/Cookies/NativeCookieTest.php +++ b/tests/Cookies/NativeCookieTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/tests/Cookies/NullCookieTest.php b/tests/Cookies/NullCookieTest.php index aec928f8..71f35fd6 100644 --- a/tests/Cookies/NullCookieTest.php +++ b/tests/Cookies/NullCookieTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/tests/Hashing/BaseHashingTest.php b/tests/Hashing/BaseHashingTest.php index 1fc53e83..bffbfed6 100644 --- a/tests/Hashing/BaseHashingTest.php +++ b/tests/Hashing/BaseHashingTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/tests/Hashing/BcryptHasherTest.php b/tests/Hashing/BcryptHasherTest.php index dace9c3f..5bbe28f4 100644 --- a/tests/Hashing/BcryptHasherTest.php +++ b/tests/Hashing/BcryptHasherTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/tests/Hashing/CallbackHasherTest.php b/tests/Hashing/CallbackHasherTest.php index 672522ea..ae235cb2 100644 --- a/tests/Hashing/CallbackHasherTest.php +++ b/tests/Hashing/CallbackHasherTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/tests/Hashing/NativeHasherTest.php b/tests/Hashing/NativeHasherTest.php index 65b29c8c..c256a903 100644 --- a/tests/Hashing/NativeHasherTest.php +++ b/tests/Hashing/NativeHasherTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/tests/Hashing/Sha256HasherTest.php b/tests/Hashing/Sha256HasherTest.php index efed8783..05033515 100644 --- a/tests/Hashing/Sha256HasherTest.php +++ b/tests/Hashing/Sha256HasherTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/tests/Hashing/WhirlpoolHasherTest.php b/tests/Hashing/WhirlpoolHasherTest.php index 20a8c0ae..547b0b23 100644 --- a/tests/Hashing/WhirlpoolHasherTest.php +++ b/tests/Hashing/WhirlpoolHasherTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/tests/Native/SentinelBootstrapperTest.php b/tests/Native/SentinelBootstrapperTest.php index 90895f04..acc4fd70 100644 --- a/tests/Native/SentinelBootstrapperTest.php +++ b/tests/Native/SentinelBootstrapperTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/tests/Permissions/PermissibleTraitTest.php b/tests/Permissions/PermissibleTraitTest.php index 545ce029..f45320ce 100644 --- a/tests/Permissions/PermissibleTraitTest.php +++ b/tests/Permissions/PermissibleTraitTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/tests/Permissions/PermissionsTraitTest.php b/tests/Permissions/PermissionsTraitTest.php index ce945509..4f033a5f 100644 --- a/tests/Permissions/PermissionsTraitTest.php +++ b/tests/Permissions/PermissionsTraitTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/tests/Permissions/StandardPermissionsTest.php b/tests/Permissions/StandardPermissionsTest.php index db33b78e..3dcbfb10 100644 --- a/tests/Permissions/StandardPermissionsTest.php +++ b/tests/Permissions/StandardPermissionsTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/tests/Permissions/StrictPermissionsTest.php b/tests/Permissions/StrictPermissionsTest.php index ac40a742..1be6da59 100644 --- a/tests/Permissions/StrictPermissionsTest.php +++ b/tests/Permissions/StrictPermissionsTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/tests/Persistences/EloquentPersistenceTest.php b/tests/Persistences/EloquentPersistenceTest.php index 73941d79..7aa9fa66 100644 --- a/tests/Persistences/EloquentPersistenceTest.php +++ b/tests/Persistences/EloquentPersistenceTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/tests/Persistences/IlluminatePersistenceRepositoryTest.php b/tests/Persistences/IlluminatePersistenceRepositoryTest.php index 51470e0b..686d0ac5 100644 --- a/tests/Persistences/IlluminatePersistenceRepositoryTest.php +++ b/tests/Persistences/IlluminatePersistenceRepositoryTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/tests/Reminders/EloquentReminderTest.php b/tests/Reminders/EloquentReminderTest.php index b6488181..e8ee0dda 100644 --- a/tests/Reminders/EloquentReminderTest.php +++ b/tests/Reminders/EloquentReminderTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/tests/Reminders/IlluminateReminderRepositoryTest.php b/tests/Reminders/IlluminateReminderRepositoryTest.php index b58b2af7..37f535b6 100644 --- a/tests/Reminders/IlluminateReminderRepositoryTest.php +++ b/tests/Reminders/IlluminateReminderRepositoryTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/tests/Roles/EloquentRoleTest.php b/tests/Roles/EloquentRoleTest.php index b859ae8b..8a46c286 100644 --- a/tests/Roles/EloquentRoleTest.php +++ b/tests/Roles/EloquentRoleTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/tests/Roles/IlluminateRoleRepositoryTest.php b/tests/Roles/IlluminateRoleRepositoryTest.php index 88e27cf8..fe20d0ae 100644 --- a/tests/Roles/IlluminateRoleRepositoryTest.php +++ b/tests/Roles/IlluminateRoleRepositoryTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/tests/SentinelTest.php b/tests/SentinelTest.php index 0551a011..b715b32e 100644 --- a/tests/SentinelTest.php +++ b/tests/SentinelTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/tests/Sessions/IlluminateSessionTest.php b/tests/Sessions/IlluminateSessionTest.php index a16b51d5..40351712 100644 --- a/tests/Sessions/IlluminateSessionTest.php +++ b/tests/Sessions/IlluminateSessionTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/tests/Sessions/NativeSessionTest.php b/tests/Sessions/NativeSessionTest.php index d5ba7e66..b1094313 100644 --- a/tests/Sessions/NativeSessionTest.php +++ b/tests/Sessions/NativeSessionTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/tests/Throttling/IlluminateThrottleRepositoryTest.php b/tests/Throttling/IlluminateThrottleRepositoryTest.php index 45e5054c..936dfa15 100644 --- a/tests/Throttling/IlluminateThrottleRepositoryTest.php +++ b/tests/Throttling/IlluminateThrottleRepositoryTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/tests/Users/EloquentUserTest.php b/tests/Users/EloquentUserTest.php index cd4e4940..a5b537db 100644 --- a/tests/Users/EloquentUserTest.php +++ b/tests/Users/EloquentUserTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC diff --git a/tests/Users/IlluminateUserRepositoryTest.php b/tests/Users/IlluminateUserRepositoryTest.php index cf4f0039..df56d645 100644 --- a/tests/Users/IlluminateUserRepositoryTest.php +++ b/tests/Users/IlluminateUserRepositoryTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Sentinel - * @version 3.0.3 + * @version 3.0.4 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2020, Cartalyst LLC