diff --git a/app/Events/Backend/Auth/User/UserConfirmed.php b/app/Events/Backend/Auth/User/UserConfirmed.php
index bc2ffc85..3e5341c6 100755
--- a/app/Events/Backend/Auth/User/UserConfirmed.php
+++ b/app/Events/Backend/Auth/User/UserConfirmed.php
@@ -18,7 +18,7 @@ class UserConfirmed
     public $user;
 
     /**
-     * @param \App\Models\Auth\User $user
+     * @param  \App\Models\Auth\User  $user
      */
     public function __construct(User $user)
     {
diff --git a/app/Events/Backend/Auth/User/UserCreated.php b/app/Events/Backend/Auth/User/UserCreated.php
index 4f83ab47..becb469d 100755
--- a/app/Events/Backend/Auth/User/UserCreated.php
+++ b/app/Events/Backend/Auth/User/UserCreated.php
@@ -18,7 +18,7 @@ class UserCreated
     public $user;
 
     /**
-     * @param \App\Models\Auth\User $user
+     * @param  \App\Models\Auth\User  $user
      */
     public function __construct(User $user)
     {
diff --git a/app/Events/Backend/Auth/User/UserDeactivated.php b/app/Events/Backend/Auth/User/UserDeactivated.php
index d08b3e3d..c784c36c 100755
--- a/app/Events/Backend/Auth/User/UserDeactivated.php
+++ b/app/Events/Backend/Auth/User/UserDeactivated.php
@@ -18,7 +18,7 @@ class UserDeactivated
     public $user;
 
     /**
-     * @param \App\Models\Auth\User $user
+     * @param  \App\Models\Auth\User  $user
      */
     public function __construct(User $user)
     {
diff --git a/app/Events/Backend/Auth/User/UserDeleted.php b/app/Events/Backend/Auth/User/UserDeleted.php
index 8f1f2b5c..d0807127 100755
--- a/app/Events/Backend/Auth/User/UserDeleted.php
+++ b/app/Events/Backend/Auth/User/UserDeleted.php
@@ -18,7 +18,7 @@ class UserDeleted
     public $user;
 
     /**
-     * @param \App\Models\Auth\User $user
+     * @param  \App\Models\Auth\User  $user
      */
     public function __construct(User $user)
     {
diff --git a/app/Events/Backend/Auth/User/UserPasswordChanged.php b/app/Events/Backend/Auth/User/UserPasswordChanged.php
index fa74d7a4..cb431034 100755
--- a/app/Events/Backend/Auth/User/UserPasswordChanged.php
+++ b/app/Events/Backend/Auth/User/UserPasswordChanged.php
@@ -18,7 +18,7 @@ class UserPasswordChanged
     public $user;
 
     /**
-     * @param \App\Models\Auth\User $user
+     * @param  \App\Models\Auth\User  $user
      */
     public function __construct(User $user)
     {
diff --git a/app/Events/Backend/Auth/User/UserPermanentlyDeleted.php b/app/Events/Backend/Auth/User/UserPermanentlyDeleted.php
index 6c1dd192..22cfdd97 100755
--- a/app/Events/Backend/Auth/User/UserPermanentlyDeleted.php
+++ b/app/Events/Backend/Auth/User/UserPermanentlyDeleted.php
@@ -18,7 +18,7 @@ class UserPermanentlyDeleted
     public $user;
 
     /**
-     * @param \App\Models\Auth\User $user
+     * @param  \App\Models\Auth\User  $user
      */
     public function __construct(User $user)
     {
diff --git a/app/Events/Backend/Auth/User/UserReactivated.php b/app/Events/Backend/Auth/User/UserReactivated.php
index e075b7bf..dac5d89e 100755
--- a/app/Events/Backend/Auth/User/UserReactivated.php
+++ b/app/Events/Backend/Auth/User/UserReactivated.php
@@ -18,7 +18,7 @@ class UserReactivated
     public $user;
 
     /**
-     * @param \App\Models\Auth\User $user
+     * @param  \App\Models\Auth\User  $user
      */
     public function __construct(User $user)
     {
diff --git a/app/Events/Backend/Auth/User/UserRestored.php b/app/Events/Backend/Auth/User/UserRestored.php
index b1e1e60c..ca6ced27 100755
--- a/app/Events/Backend/Auth/User/UserRestored.php
+++ b/app/Events/Backend/Auth/User/UserRestored.php
@@ -18,7 +18,7 @@ class UserRestored
     public $user;
 
     /**
-     * @param \App\Models\Auth\User $user
+     * @param  \App\Models\Auth\User  $user
      */
     public function __construct(User $user)
     {
diff --git a/app/Events/Backend/Auth/User/UserSocialDeleted.php b/app/Events/Backend/Auth/User/UserSocialDeleted.php
index 81e7a260..2b096b3f 100755
--- a/app/Events/Backend/Auth/User/UserSocialDeleted.php
+++ b/app/Events/Backend/Auth/User/UserSocialDeleted.php
@@ -25,7 +25,7 @@ class UserSocialDeleted
     /**
      * UserSocialDeleted constructor.
      *
-     * @param \App\Models\Auth\User $user
+     * @param  \App\Models\Auth\User  $user
      * @param $social
      */
     public function __construct(User $user, $social)
diff --git a/app/Events/Backend/Auth/User/UserUnconfirmed.php b/app/Events/Backend/Auth/User/UserUnconfirmed.php
index 56bcc41c..b0c03258 100755
--- a/app/Events/Backend/Auth/User/UserUnconfirmed.php
+++ b/app/Events/Backend/Auth/User/UserUnconfirmed.php
@@ -18,7 +18,7 @@ class UserUnconfirmed
     public $user;
 
     /**
-     * @param \App\Models\Auth\User $user
+     * @param  \App\Models\Auth\User  $user
      */
     public function __construct(User $user)
     {
diff --git a/app/Events/Backend/Auth/User/UserUpdated.php b/app/Events/Backend/Auth/User/UserUpdated.php
index b05b5ea2..6257564c 100755
--- a/app/Events/Backend/Auth/User/UserUpdated.php
+++ b/app/Events/Backend/Auth/User/UserUpdated.php
@@ -18,7 +18,7 @@ class UserUpdated
     public $user;
 
     /**
-     * @param \App\Models\Auth\User $user
+     * @param  \App\Models\Auth\User  $user
      */
     public function __construct(User $user)
     {
diff --git a/app/Exceptions/GeneralException.php b/app/Exceptions/GeneralException.php
index 0b2ee32c..fe4b0f83 100755
--- a/app/Exceptions/GeneralException.php
+++ b/app/Exceptions/GeneralException.php
@@ -18,9 +18,9 @@ class GeneralException extends Exception
     /**
      * GeneralException constructor.
      *
-     * @param string         $message
-     * @param int            $code
-     * @param Throwable|null $previous
+     * @param  string  $message
+     * @param  int  $code
+     * @param  Throwable|null  $previous
      */
     public function __construct($message = '', $code = 0, Throwable $previous = null)
     {
diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php
index 97a2d4cc..9377e0ec 100755
--- a/app/Exceptions/Handler.php
+++ b/app/Exceptions/Handler.php
@@ -41,10 +41,10 @@ class Handler extends ExceptionHandler
     /**
      * Report or log an exception.
      *
-     * @param Exception $exception
+     * @param  Exception  $exception
+     * @return mixed|void
      *
      * @throws Exception
-     * @return mixed|void
      */
     public function report(Exception $exception)
     {
@@ -56,8 +56,9 @@ public function report(Exception $exception)
      *
      * @param  \Illuminate\Http\Request  $request
      * @param  \Exception  $exception
-     * @throws \Exception
      * @return \Symfony\Component\HttpFoundation\Response
+     *
+     * @throws \Exception
      */
     public function render($request, Exception $exception)
     {
@@ -123,7 +124,6 @@ public function getStatusCode()
      * set the status code.
      *
      * @param [type] $statusCode [description]
-     *
      * @return statuscode
      */
     public function setStatusCode($statusCode)
@@ -137,7 +137,6 @@ public function setStatusCode($statusCode)
      * respond with error.
      *
      * @param $message
-     *
      * @return \Illuminate\Http\JsonResponse
      */
     protected function respondWithError($message)
@@ -153,9 +152,8 @@ protected function respondWithError($message)
     /**
      * Respond.
      *
-     * @param array $data
-     * @param array $headers
-     *
+     * @param  array  $data
+     * @param  array  $headers
      * @return \Illuminate\Http\JsonResponse
      */
     public function respond($data, $headers = [])
diff --git a/app/Exceptions/ReportableException.php b/app/Exceptions/ReportableException.php
index a246031e..411942b4 100755
--- a/app/Exceptions/ReportableException.php
+++ b/app/Exceptions/ReportableException.php
@@ -18,9 +18,9 @@ class ReportableException extends Exception
     /**
      * GeneralException constructor.
      *
-     * @param string         $message
-     * @param int            $code
-     * @param Throwable|null $previous
+     * @param  string  $message
+     * @param  int  $code
+     * @param  Throwable|null  $previous
      */
     public function __construct($message = '', $code = 0, Throwable $previous = null)
     {
diff --git a/app/Helpers/General/HtmlHelper.php b/app/Helpers/General/HtmlHelper.php
index 2edf9e2f..7e670557 100755
--- a/app/Helpers/General/HtmlHelper.php
+++ b/app/Helpers/General/HtmlHelper.php
@@ -20,7 +20,7 @@ class HtmlHelper
     /**
      * HtmlHelper constructor.
      *
-     * @param UrlGenerator|null $url
+     * @param  UrlGenerator|null  $url
      */
     public function __construct(UrlGenerator $url = null)
     {
@@ -28,10 +28,9 @@ public function __construct(UrlGenerator $url = null)
     }
 
     /**
-     * @param       $url
-     * @param array $attributes
-     * @param null  $secure
-     *
+     * @param  $url
+     * @param  array  $attributes
+     * @param  null  $secure
      * @return mixed
      */
     public function style($url, $attributes = [], $secure = null)
@@ -48,10 +47,9 @@ public function style($url, $attributes = [], $secure = null)
     /**
      * Generate a link to a JavaScript file.
      *
-     * @param string $url
-     * @param array  $attributes
-     * @param bool   $secure
-     *
+     * @param  string  $url
+     * @param  array  $attributes
+     * @param  bool  $secure
      * @return \Illuminate\Support\HtmlString
      */
     public function script($url, $attributes = [], $secure = null)
@@ -62,10 +60,9 @@ public function script($url, $attributes = [], $secure = null)
     }
 
     /**
-     * @param        $cancel_to
-     * @param        $title
-     * @param string $classes
-     *
+     * @param  $cancel_to
+     * @param  $title
+     * @param  string  $classes
      * @return HtmlString
      */
     public function formCancel($cancel_to, $title, $classes = 'btn btn-danger btn-sm')
@@ -74,9 +71,8 @@ public function formCancel($cancel_to, $title, $classes = 'btn btn-danger btn-sm
     }
 
     /**
-     * @param        $title
-     * @param string $classes
-     *
+     * @param  $title
+     * @param  string  $classes
      * @return HtmlString
      */
     public function formSubmit($title, $classes = 'btn btn-success btn-sm pull-right')
@@ -87,8 +83,7 @@ public function formSubmit($title, $classes = 'btn btn-success btn-sm pull-right
     /**
      * Build an HTML attribute string from an array.
      *
-     * @param array $attributes
-     *
+     * @param  array  $attributes
      * @return string
      */
     public function attributes($attributes)
@@ -109,9 +104,8 @@ public function attributes($attributes)
     /**
      * Build a single attribute element.
      *
-     * @param string $key
-     * @param string $value
-     *
+     * @param  string  $key
+     * @param  string  $value
      * @return string
      */
     protected function attributeElement($key, $value)
@@ -139,7 +133,6 @@ protected function attributeElement($key, $value)
      * Transform the string to an Html serializable object.
      *
      * @param $html
-     *
      * @return \Illuminate\Support\HtmlString
      */
     protected function toHtmlString($html)
diff --git a/app/Helpers/General/TimezoneHelper.php b/app/Helpers/General/TimezoneHelper.php
index d9126999..057c7f7d 100755
--- a/app/Helpers/General/TimezoneHelper.php
+++ b/app/Helpers/General/TimezoneHelper.php
@@ -10,9 +10,8 @@
 class TimezoneHelper
 {
     /**
-     * @param Carbon $date
-     * @param string $format
-     *
+     * @param  Carbon  $date
+     * @param  string  $format
      * @return Carbon
      */
     public function convertToLocal(Carbon $date, $format = 'D M j G:i:s T Y'): string
@@ -22,7 +21,6 @@ public function convertToLocal(Carbon $date, $format = 'D M j G:i:s T Y'): strin
 
     /**
      * @param $date
-     *
      * @return Carbon
      */
     public function convertFromLocal($date): Carbon
diff --git a/app/Helpers/Global/HtmlHelper.php b/app/Helpers/Global/HtmlHelper.php
index 7bedfbf9..69e60202 100755
--- a/app/Helpers/Global/HtmlHelper.php
+++ b/app/Helpers/Global/HtmlHelper.php
@@ -4,10 +4,9 @@
 
 if (! function_exists('style')) {
     /**
-     * @param       $url
-     * @param array $attributes
-     * @param null  $secure
-     *
+     * @param  $url
+     * @param  array  $attributes
+     * @param  null  $secure
      * @return mixed
      */
     function style($url, $attributes = [], $secure = null)
@@ -18,10 +17,9 @@ function style($url, $attributes = [], $secure = null)
 
 if (! function_exists('script')) {
     /**
-     * @param       $url
-     * @param array $attributes
-     * @param null  $secure
-     *
+     * @param  $url
+     * @param  array  $attributes
+     * @param  null  $secure
      * @return mixed
      */
     function script($url, $attributes = [], $secure = null)
@@ -32,10 +30,9 @@ function script($url, $attributes = [], $secure = null)
 
 if (! function_exists('form_cancel')) {
     /**
-     * @param        $cancel_to
-     * @param        $title
-     * @param string $classes
-     *
+     * @param  $cancel_to
+     * @param  $title
+     * @param  string  $classes
      * @return mixed
      */
     function form_cancel($cancel_to, $title, $classes = 'btn btn-danger btn-sm')
@@ -46,9 +43,8 @@ function form_cancel($cancel_to, $title, $classes = 'btn btn-danger btn-sm')
 
 if (! function_exists('form_submit')) {
     /**
-     * @param        $title
-     * @param string $classes
-     *
+     * @param  $title
+     * @param  string  $classes
      * @return mixed
      */
     function form_submit($title, $classes = 'btn btn-success btn-sm pull-right')
@@ -61,10 +57,9 @@ function form_submit($title, $classes = 'btn btn-success btn-sm pull-right')
     /**
      * Get the active class if the condition is not falsy.
      *
-     * @param        $condition
-     * @param string $activeClass
-     * @param string $inactiveClass
-     *
+     * @param  $condition
+     * @param  string  $activeClass
+     * @param  string  $inactiveClass
      * @return string
      */
     function active_class($condition, $activeClass = 'active', $inactiveClass = '')
diff --git a/app/Helpers/helper.php b/app/Helpers/helper.php
index efbae8a0..feefc33d 100755
--- a/app/Helpers/helper.php
+++ b/app/Helpers/helper.php
@@ -107,7 +107,6 @@ function includeRouteFiles($folder)
      * So we take the original and place that in and send back the path.
      *
      * @param $path
-     *
      * @return string
      */
     function getRtlCss($path)
diff --git a/app/Http/Composers/Backend/SidebarComposer.php b/app/Http/Composers/Backend/SidebarComposer.php
index e7318de8..3307da3f 100755
--- a/app/Http/Composers/Backend/SidebarComposer.php
+++ b/app/Http/Composers/Backend/SidebarComposer.php
@@ -18,7 +18,7 @@ class SidebarComposer
     /**
      * SidebarComposer constructor.
      *
-     * @param UserRepository $userRepository
+     * @param  UserRepository  $userRepository
      */
     public function __construct(UserRepository $userRepository)
     {
@@ -26,8 +26,7 @@ public function __construct(UserRepository $userRepository)
     }
 
     /**
-     * @param View $view
-     *
+     * @param  View  $view
      * @return bool|mixed
      */
     public function compose(View $view)
diff --git a/app/Http/Composers/GlobalComposer.php b/app/Http/Composers/GlobalComposer.php
index 5aec0cd3..1ed9c405 100755
--- a/app/Http/Composers/GlobalComposer.php
+++ b/app/Http/Composers/GlobalComposer.php
@@ -12,7 +12,7 @@ class GlobalComposer
     /**
      * Bind data to the view.
      *
-     * @param View $view
+     * @param  View  $view
      */
     public function compose(View $view)
     {
diff --git a/app/Http/Controllers/Api/V1/APIController.php b/app/Http/Controllers/Api/V1/APIController.php
index d59daf01..18f8811f 100755
--- a/app/Http/Controllers/Api/V1/APIController.php
+++ b/app/Http/Controllers/Api/V1/APIController.php
@@ -31,7 +31,6 @@ public function getStatusCode()
      * set the status code.
      *
      * @param [type] $statusCode [description]
-     *
      * @return statuscode
      */
     public function setStatusCode($statusCode)
@@ -44,9 +43,8 @@ public function setStatusCode($statusCode)
     /**
      * Respond.
      *
-     * @param array $data
-     * @param array $headers
-     *
+     * @param  array  $data
+     * @param  array  $headers
      * @return \Illuminate\Http\JsonResponse
      */
     public function respond($data, $headers = [])
@@ -57,9 +55,8 @@ public function respond($data, $headers = [])
     /**
      * respond with pagincation.
      *
-     * @param Paginator $items
-     * @param array     $data
-     *
+     * @param  Paginator  $items
+     * @param  array  $data
      * @return \Illuminate\Http\JsonResponse
      */
     public function respondWithPagination($items, $data)
@@ -79,8 +76,7 @@ public function respondWithPagination($items, $data)
     /**
      * Respond Created.
      *
-     * @param string $message
-     *
+     * @param  string  $message
      * @return \Illuminate\Http\JsonResponse
      */
     public function respondCreated($data)
@@ -93,8 +89,7 @@ public function respondCreated($data)
     /**
      * Respond Created with data.
      *
-     * @param string $message
-     *
+     * @param  string  $message
      * @return \Illuminate\Http\JsonResponse
      */
     public function respondCreatedWithData($data)
@@ -106,7 +101,6 @@ public function respondCreatedWithData($data)
      * respond with error.
      *
      * @param $message
-     *
      * @return \Illuminate\Http\JsonResponse
      */
     public function respondWithError($message)
@@ -122,8 +116,7 @@ public function respondWithError($message)
     /**
      * responsd not found.
      *
-     * @param string $message
-     *
+     * @param  string  $message
      * @return \Illuminate\Http\JsonResponse
      */
     public function respondNotFound($message = 'Not Found')
@@ -134,8 +127,7 @@ public function respondNotFound($message = 'Not Found')
     /**
      * Respond with error.
      *
-     * @param string $message
-     *
+     * @param  string  $message
      * @return \Illuminate\Http\JsonResponse
      */
     public function respondInternalError($message = 'Internal Error')
@@ -146,8 +138,7 @@ public function respondInternalError($message = 'Internal Error')
     /**
      * Respond with unauthorized.
      *
-     * @param string $message
-     *
+     * @param  string  $message
      * @return \Illuminate\Http\JsonResponse
      */
     protected function respondUnauthorized($message = 'Unauthorized')
@@ -158,8 +149,7 @@ protected function respondUnauthorized($message = 'Unauthorized')
     /**
      * Respond with forbidden.
      *
-     * @param string $message
-     *
+     * @param  string  $message
      * @return \Illuminate\Http\JsonResponse
      */
     protected function respondForbidden($message = 'Forbidden')
diff --git a/app/Http/Controllers/Api/V1/BlogCategoriesController.php b/app/Http/Controllers/Api/V1/BlogCategoriesController.php
index 5669853d..c68fab3f 100755
--- a/app/Http/Controllers/Api/V1/BlogCategoriesController.php
+++ b/app/Http/Controllers/Api/V1/BlogCategoriesController.php
@@ -53,8 +53,7 @@ public function __construct(BlogCategoriesRepository $repository)
      * @responseFile status=401 scenario="API token not provided" responses/unauthenticated.json
      * @responseFile responses/blog-category/blog-category-list.json
      *
-     * @param ManageBlogCategoriesRequest $request
-     *
+     * @param  ManageBlogCategoriesRequest  $request
      * @return \Illuminate\Http\JsonResponse
      */
     public function index(ManageBlogCategoriesRequest $request)
@@ -75,9 +74,8 @@ public function index(ManageBlogCategoriesRequest $request)
      * @responseFile status=401 scenario="API token not provided" responses/unauthenticated.json
      * @responseFile responses/blog-category/blog-category-show.json
      *
-     * @param ManageBlogCategoriesRequest $request
-     * @param BlogCategory $blogCategory
-     *
+     * @param  ManageBlogCategoriesRequest  $request
+     * @param  BlogCategory  $blogCategory
      * @return \Illuminate\Http\JsonResponse
      */
     public function show(ManageBlogCategoriesRequest $request, BlogCategory $blogCategory)
@@ -93,8 +91,7 @@ public function show(ManageBlogCategoriesRequest $request, BlogCategory $blogCat
      * @responseFile status=401 scenario="API token not provided" responses/unauthenticated.json
      * @responseFile status=201 responses/blog-category/blog-category-store.json
      *
-     * @param StoreBlogCategoriesRequest $request
-     *
+     * @param  StoreBlogCategoriesRequest  $request
      * @return \Illuminate\Http\JsonResponse
      */
     public function store(StoreBlogCategoriesRequest $request)
@@ -117,9 +114,8 @@ public function store(StoreBlogCategoriesRequest $request)
      * @responseFile status=401 scenario="API token not provided" responses/unauthenticated.json
      * @responseFile status=200 responses/blog-category/blog-category-update.json
      *
-     * @param UpdateBlogCategoriesRequest $request
-     * @param BlogCategory $blogCategory
-     *
+     * @param  UpdateBlogCategoriesRequest  $request
+     * @param  BlogCategory  $blogCategory
      * @return \Illuminate\Http\JsonResponse
      */
     public function update(UpdateBlogCategoriesRequest $request, BlogCategory $blogCategory)
@@ -140,9 +136,8 @@ public function update(UpdateBlogCategoriesRequest $request, BlogCategory $blogC
      * @responseFile status=401 scenario="API token not provided" responses/unauthenticated.json
      * @responseFile status=204 scenario="When the record is deleted" responses/blog-category/blog-category-destroy.json
      *
-     * @param DeleteBlogCategoriesRequest $request
-     * @param BlogCategory $blogCategory
-     *
+     * @param  DeleteBlogCategoriesRequest  $request
+     * @param  BlogCategory  $blogCategory
      * @return \Illuminate\Http\JsonResponse
      */
     public function destroy(DeleteBlogCategoriesRequest $request, BlogCategory $blogCategory)
diff --git a/app/Http/Controllers/Api/V1/BlogTagsController.php b/app/Http/Controllers/Api/V1/BlogTagsController.php
index 649779b5..4f8ba776 100755
--- a/app/Http/Controllers/Api/V1/BlogTagsController.php
+++ b/app/Http/Controllers/Api/V1/BlogTagsController.php
@@ -53,8 +53,7 @@ public function __construct(BlogTagsRepository $repository)
      * @responseFile status=401 scenario="api_key not provided" responses/unauthenticated.json
      * @responseFile responses/blog-tag/blog-tag-list.json
      *
-     * @param ManageBlogTagsRequest $request
-     *
+     * @param  ManageBlogTagsRequest  $request
      * @return \Illuminate\Http\JsonResponse
      */
     public function index(ManageBlogTagsRequest $request)
@@ -75,9 +74,8 @@ public function index(ManageBlogTagsRequest $request)
      * @responseFile status=401 scenario="API token not provided" responses/unauthenticated.json
      * @responseFile responses/blog-tag/blog-tag-show.json
      *
-     * @param ManageBlogTagsRequest $request
-     * @param BlogTag $blogTag
-     *
+     * @param  ManageBlogTagsRequest  $request
+     * @param  BlogTag  $blogTag
      * @return \Illuminate\Http\JsonResponse
      */
     public function show(ManageBlogTagsRequest $request, BlogTag $blogTag)
@@ -93,8 +91,7 @@ public function show(ManageBlogTagsRequest $request, BlogTag $blogTag)
      * @responseFile status=401 scenario="api_key not provided" responses/unauthenticated.json
      * @responseFile responses/blog-tag/blog-tag-store.json
      *
-     * @param \App\Http\Requests\Backend\BlogTags\StoreBlogTagsRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\BlogTags\StoreBlogTagsRequest  $request
      * @return \Illuminate\Http\JsonResponse
      */
     public function store(StoreBlogTagsRequest $request)
@@ -115,9 +112,8 @@ public function store(StoreBlogTagsRequest $request)
      * @responseFile status=401 scenario="api_key not provided" responses/unauthenticated.json
      * @responseFile responses/blog-tag/blog-tag-update.json
      *
-     * @param UpdateBlogTagsRequest $request
-     * @param BlogTag $blogTag
-     *
+     * @param  UpdateBlogTagsRequest  $request
+     * @param  BlogTag  $blogTag
      * @return \Illuminate\Http\JsonResponse
      */
     public function update(UpdateBlogTagsRequest $request, BlogTag $blogTag)
@@ -138,9 +134,8 @@ public function update(UpdateBlogTagsRequest $request, BlogTag $blogTag)
      * @responseFile status=401 scenario="api_key not provided" responses/unauthenticated.json
      * @responseFile status=204 scenario="When the record is deleted" responses/blog-tag/blog-tag-destroy.json
      *
-     * @param DeleteBlogTagsRequest $request
-     * @param BlogTag $blogTag
-     *
+     * @param  DeleteBlogTagsRequest  $request
+     * @param  BlogTag  $blogTag
      * @return \Illuminate\Http\JsonResponse
      */
     public function destroy(DeleteBlogTagsRequest $request, BlogTag $blogTag)
diff --git a/app/Http/Controllers/Api/V1/BlogsController.php b/app/Http/Controllers/Api/V1/BlogsController.php
index 0a68c799..b84f62fe 100755
--- a/app/Http/Controllers/Api/V1/BlogsController.php
+++ b/app/Http/Controllers/Api/V1/BlogsController.php
@@ -53,8 +53,7 @@ public function __construct(BlogsRepository $repository)
      * @responseFile status=401 scenario="api_key not provided" responses/unauthenticated.json
      * @responseFile responses/blog/blog-list.json
      *
-     * @param ManageBlogsRequest $request
-     *
+     * @param  ManageBlogsRequest  $request
      * @return \Illuminate\Http\JsonResponse
      */
     public function index(ManageBlogsRequest $request)
@@ -76,7 +75,6 @@ public function index(ManageBlogsRequest $request)
      * @responseFile responses/blog/blog-show.json
      *
      * @param \App\Models\Blog blog
-     *
      * @return \Illuminate\Http\JsonResponse
      */
     public function show(ManageBlogsRequest $request, Blog $blog)
@@ -92,8 +90,7 @@ public function show(ManageBlogsRequest $request, Blog $blog)
      * @responseFile status=401 scenario="api_key not provided" responses/unauthenticated.json
      * @responseFile status=201 responses/blog/blog-store.json
      *
-     * @param StoreBlogsRequest $request
-     *
+     * @param  StoreBlogsRequest  $request
      * @return \Illuminate\Http\JsonResponse
      */
     public function store(StoreBlogsRequest $request)
@@ -114,9 +111,8 @@ public function store(StoreBlogsRequest $request)
      * @responseFile status=401 scenario="api_key not provided" responses/unauthenticated.json
      * @responseFile responses/blog/blog-update.json
      *
-     * @param \App\Models\Blog $blog
-     * @param \App\Http\Requests\Backend\Blogs\UpdateBlogsRequest $request
-     *
+     * @param  \App\Models\Blog  $blog
+     * @param  \App\Http\Requests\Backend\Blogs\UpdateBlogsRequest  $request
      * @return \Illuminate\Http\JsonResponse
      */
     public function update(UpdateBlogsRequest $request, Blog $blog)
@@ -135,9 +131,8 @@ public function update(UpdateBlogsRequest $request, Blog $blog)
      * @responseFile status=401 scenario="api_key not provided" responses/unauthenticated.json
      * @responseFile status=204 scenario="When the record is deleted" responses/blog/blog-destroy.json
      *
-     * @param DeleteBlogsRequest $request
-     * @param \App\Models\Blog $blog
-     *
+     * @param  DeleteBlogsRequest  $request
+     * @param  \App\Models\Blog  $blog
      * @return \Illuminate\Http\JsonResponse
      */
     public function destroy(DeleteBlogsRequest $request, Blog $blog)
diff --git a/app/Http/Controllers/Api/V1/FaqsController.php b/app/Http/Controllers/Api/V1/FaqsController.php
index 2ba51fae..057c4bb2 100755
--- a/app/Http/Controllers/Api/V1/FaqsController.php
+++ b/app/Http/Controllers/Api/V1/FaqsController.php
@@ -53,8 +53,7 @@ public function __construct(FaqsRepository $repository)
      * @responseFile status=401 scenario="api_key not provided" responses/unauthenticated.json
      * @responseFile responses/faq/faq-list.json
      *
-     * @param ManageFaqsRequest $request
-     *
+     * @param  ManageFaqsRequest  $request
      * @return \Illuminate\Http\JsonResponse
      */
     public function index(ManageFaqsRequest $request)
@@ -75,9 +74,8 @@ public function index(ManageFaqsRequest $request)
      * @responseFile status=401 scenario="api_key not provided" responses/unauthenticated.json
      * @responseFile responses/faq/faq-show.json
      *
-     * @param ManageFaqsRequest $request
-     * @param \App\Models\Faq $faq
-     *
+     * @param  ManageFaqsRequest  $request
+     * @param  \App\Models\Faq  $faq
      * @return \Illuminate\Http\JsonResponse
      */
     public function show(ManageFaqsRequest $request, Faq $faq)
@@ -93,8 +91,7 @@ public function show(ManageFaqsRequest $request, Faq $faq)
      * @responseFile status=401 scenario="api_key not provided" responses/unauthenticated.json
      * @responseFile status=201 responses/faq/faq-store.json
      *
-     * @param \App\Http\Requests\Backend\Faqs\StoreFaqsRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\Faqs\StoreFaqsRequest  $request
      * @return \Illuminate\Http\JsonResponse
      */
     public function store(StoreFaqsRequest $request)
@@ -115,9 +112,8 @@ public function store(StoreFaqsRequest $request)
      * @responseFile status=401 scenario="api_key not provided" responses/unauthenticated.json
      * @responseFile responses/faq/faq-update.json
      *
-     * @param \App\Models\Faq $faq
-     * @param \App\Http\Requests\Backend\Faqs\UpdateFaqsRequest $request
-     *
+     * @param  \App\Models\Faq  $faq
+     * @param  \App\Http\Requests\Backend\Faqs\UpdateFaqsRequest  $request
      * @return \Illuminate\Http\JsonResponse
      */
     public function update(UpdateFaqsRequest $request, Faq $faq)
@@ -138,8 +134,7 @@ public function update(UpdateFaqsRequest $request, Faq $faq)
      * @responseFile status=401 scenario="api_key not provided" responses/unauthenticated.json
      * @responseFile status=204 scenario="When the record is deleted" responses/faq/faq-destroy.json
      *
-     * @param \App\Models\Faq $faq
-     *
+     * @param  \App\Models\Faq  $faq
      * @return \Illuminate\Http\JsonResponse
      */
     public function destroy(DeleteFaqsRequest $request, Faq $faq)
diff --git a/app/Http/Controllers/Api/V1/PagesController.php b/app/Http/Controllers/Api/V1/PagesController.php
index bff6a9a3..502c40cd 100755
--- a/app/Http/Controllers/Api/V1/PagesController.php
+++ b/app/Http/Controllers/Api/V1/PagesController.php
@@ -53,8 +53,7 @@ public function __construct(PagesRepository $repository)
      * @responseFile status=401 scenario="api_key not provided" responses/unauthenticated.json
      * @responseFile responses/page/page-list.json
      *
-     * @param \Illuminate\Http\ManagePageRequest $request
-     *
+     * @param  \Illuminate\Http\ManagePageRequest  $request
      * @return \Illuminate\Http\JsonResponse
      */
     public function index(ManagePageRequest $request)
@@ -75,9 +74,8 @@ public function index(ManagePageRequest $request)
      * @responseFile status=401 scenario="api_key not provided" responses/unauthenticated.json
      * @responseFile responses/page/page-show.json
      *
-     * @param ManagePageRequest $request
-     * @param \App\Models\Page $page
-     *
+     * @param  ManagePageRequest  $request
+     * @param  \App\Models\Page  $page
      * @return \Illuminate\Http\JsonResponse
      */
     public function show(ManagePageRequest $request, Page $page)
@@ -93,8 +91,7 @@ public function show(ManagePageRequest $request, Page $page)
      * @responseFile status=401 scenario="api_key not provided" responses/unauthenticated.json
      * @responseFile status=201 responses/page/page-store.json
      *
-     * @param \App\Http\Requests\Backend\Pages\StorePageRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\Pages\StorePageRequest  $request
      * @return \Illuminate\Http\JsonResponse
      */
     public function store(StorePageRequest $request)
@@ -117,9 +114,8 @@ public function store(StorePageRequest $request)
      * @responseFile status=401 scenario="api_key not provided" responses/unauthenticated.json
      * @responseFile responses/page/page-update.json
      *
-     * @param \App\Models\Page $page
-     * @param \App\Http\Requests\Backend\Pages\UpdatePageRequest $request
-     *
+     * @param  \App\Models\Page  $page
+     * @param  \App\Http\Requests\Backend\Pages\UpdatePageRequest  $request
      * @return \Illuminate\Http\JsonResponse
      */
     public function update(UpdatePageRequest $request, Page $page)
@@ -140,8 +136,7 @@ public function update(UpdatePageRequest $request, Page $page)
      * @responseFile status=401 scenario="api_key not provided" responses/unauthenticated.json
      * @responseFile status=204 scenario="When the record is deleted" responses/page/page-destroy.json
      *
-     * @param \App\Models\Page $page
-     *
+     * @param  \App\Models\Page  $page
      * @return \Illuminate\Http\JsonResponse
      */
     public function destroy(DeletePageRequest $request, Page $page)
diff --git a/app/Http/Controllers/Backend/Auth/Permission/PermissionTableController.php b/app/Http/Controllers/Backend/Auth/Permission/PermissionTableController.php
index 99fa0de9..00a3cd7c 100755
--- a/app/Http/Controllers/Backend/Auth/Permission/PermissionTableController.php
+++ b/app/Http/Controllers/Backend/Auth/Permission/PermissionTableController.php
@@ -18,7 +18,7 @@ class PermissionTableController extends Controller
     protected $repository;
 
     /**
-     * @param \App\Repositories\Backend\Auth\PermissionRepository $repository
+     * @param  \App\Repositories\Backend\Auth\PermissionRepository  $repository
      */
     public function __construct(PermissionRepository $repository)
     {
@@ -26,8 +26,7 @@ public function __construct(PermissionRepository $repository)
     }
 
     /**
-     * @param App\Http\Requests\Backend\Auth\Permission\ManagePermissionRequest $request
-     *
+     * @param  App\Http\Requests\Backend\Auth\Permission\ManagePermissionRequest  $request
      * @return mixed
      */
     public function __invoke(ManagePermissionRequest $request)
diff --git a/app/Http/Controllers/Backend/Auth/Permission/PermissionsController.php b/app/Http/Controllers/Backend/Auth/Permission/PermissionsController.php
index 81349819..5eb0ba5e 100755
--- a/app/Http/Controllers/Backend/Auth/Permission/PermissionsController.php
+++ b/app/Http/Controllers/Backend/Auth/Permission/PermissionsController.php
@@ -25,7 +25,7 @@ class PermissionsController extends Controller
     protected $repository;
 
     /**
-     * @param \App\Repositories\Backend\Auth\PermissionRepository $repository
+     * @param  \App\Repositories\Backend\Auth\PermissionRepository  $repository
      */
     public function __construct(PermissionRepository $repository)
     {
@@ -34,8 +34,7 @@ public function __construct(PermissionRepository $repository)
     }
 
     /**
-     * @param ManagePermissionRequest $request
-     *
+     * @param  ManagePermissionRequest  $request
      * @return \App\Http\Responses\ViewResponse
      */
     public function index(ManagePermissionRequest $request)
@@ -44,8 +43,7 @@ public function index(ManagePermissionRequest $request)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Auth\Permission\CreatePermissionRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\Auth\Permission\CreatePermissionRequest  $request
      * @return \App\Http\Responses\Backend\Auth\Permission\CreateResponse
      */
     public function create(CreatePermissionRequest $request)
@@ -54,8 +52,7 @@ public function create(CreatePermissionRequest $request)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Auth\Permission\StorePermissionRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\Auth\Permission\StorePermissionRequest  $request
      * @return \App\Http\Responses\RedirectResponse
      */
     public function store(StorePermissionRequest $request)
@@ -66,9 +63,8 @@ public function store(StorePermissionRequest $request)
     }
 
     /**
-     * @param \App\Models\Auth\Permission $permission
-     * @param \App\Http\Requests\Backend\Auth\Permission\EditPermissionRequest $request
-     *
+     * @param  \App\Models\Auth\Permission  $permission
+     * @param  \App\Http\Requests\Backend\Auth\Permission\EditPermissionRequest  $request
      * @return \App\Http\Responses\Backend\Auth\Permission\EditResponse
      */
     public function edit(Permission $permission, EditPermissionRequest $request)
@@ -77,9 +73,8 @@ public function edit(Permission $permission, EditPermissionRequest $request)
     }
 
     /**
-     * @param App\Models\Auth\Permission $permission
-     * @param \App\Http\Requests\Backend\Auth\Permission\UpdatePermissionRequest $request
-     *
+     * @param  App\Models\Auth\Permission  $permission
+     * @param  \App\Http\Requests\Backend\Auth\Permission\UpdatePermissionRequest  $request
      * @return \App\Http\Responses\RedirectResponse
      */
     public function update(Permission $permission, UpdatePermissionRequest $request)
@@ -90,9 +85,8 @@ public function update(Permission $permission, UpdatePermissionRequest $request)
     }
 
     /**
-     * @param App\Models\Auth\Permission $permission
-     * @param \App\Http\Requests\Backend\Auth\Permission\DeletePermissionRequest $request
-     *
+     * @param  App\Models\Auth\Permission  $permission
+     * @param  \App\Http\Requests\Backend\Auth\Permission\DeletePermissionRequest  $request
      * @return \App\Http\Responses\RedirectResponse
      */
     public function destroy(Permission $permission, DeletePermissionRequest $request)
diff --git a/app/Http/Controllers/Backend/Auth/Role/RoleController.php b/app/Http/Controllers/Backend/Auth/Role/RoleController.php
index ba90ecf5..0db037e1 100755
--- a/app/Http/Controllers/Backend/Auth/Role/RoleController.php
+++ b/app/Http/Controllers/Backend/Auth/Role/RoleController.php
@@ -29,8 +29,8 @@ class RoleController extends Controller
     protected $permissionRepository;
 
     /**
-     * @param \App\Repositories\Backend\Auth\RoleRepository $roleRepository
-     * @param \App\Repositories\Backend\Auth\PermissionRepository $permissionRepository
+     * @param  \App\Repositories\Backend\Auth\RoleRepository  $roleRepository
+     * @param  \App\Repositories\Backend\Auth\PermissionRepository  $permissionRepository
      */
     public function __construct(RoleRepository $roleRepository, PermissionRepository $permissionRepository)
     {
@@ -40,8 +40,7 @@ public function __construct(RoleRepository $roleRepository, PermissionRepository
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Auth\Role\ManageRoleRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\Auth\Role\ManageRoleRequest  $request
      * @return mixed
      */
     public function index(ManageRoleRequest $request)
@@ -50,8 +49,7 @@ public function index(ManageRoleRequest $request)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Auth\Role\ManageRoleRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\Auth\Role\ManageRoleRequest  $request
      * @return \App\Http\Responses\Backend\Auth\Role\CreateResponse
      */
     public function create(ManageRoleRequest $request)
@@ -60,8 +58,7 @@ public function create(ManageRoleRequest $request)
     }
 
     /**
-     * @param  \App\Http\Requests\Backend\Auth\Role\StoreRoleRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\Auth\Role\StoreRoleRequest  $request
      * @return \App\Http\Responses\RedirectResponse
      */
     public function store(StoreRoleRequest $request)
@@ -72,9 +69,8 @@ public function store(StoreRoleRequest $request)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Auth\Role\ManageRoleRequest $request
-     * @param \App\Models\Auth\Role $role
-     *
+     * @param  \App\Http\Requests\Backend\Auth\Role\ManageRoleRequest  $request
+     * @param  \App\Models\Auth\Role  $role
      * @return \App\Http\Responses\Backend\Auth\Role\EditResponse
      */
     public function edit(Role $role, EditRoleRequest $request)
@@ -85,7 +81,6 @@ public function edit(Role $role, EditRoleRequest $request)
     /**
      * @param  \App\Http\Requests\Backend\Auth\RoleUpdateRoleRequest  $request
      * @param  \App\Models\Auth\Role  $role
-     *
      * @return \App\Http\Responses\RedirectResponse
      */
     public function update(Role $role, UpdateRoleRequest $request)
@@ -96,11 +91,11 @@ public function update(Role $role, UpdateRoleRequest $request)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Auth\Role\ManageRoleRequest $request
-     * @param \App\Models\Auth\Role $role
+     * @param  \App\Http\Requests\Backend\Auth\Role\ManageRoleRequest  $request
+     * @param  \App\Models\Auth\Role  $role
+     * @return mixed
      *
      * @throws \Exception
-     * @return mixed
      */
     public function destroy(ManageRoleRequest $request, Role $role)
     {
diff --git a/app/Http/Controllers/Backend/Auth/Role/RoleTableController.php b/app/Http/Controllers/Backend/Auth/Role/RoleTableController.php
index 3268a411..651979c6 100755
--- a/app/Http/Controllers/Backend/Auth/Role/RoleTableController.php
+++ b/app/Http/Controllers/Backend/Auth/Role/RoleTableController.php
@@ -18,7 +18,7 @@ class RoleTableController extends Controller
     protected $repository;
 
     /**
-     * @param \App\Repositories\Backend\Auth\RoleRepository $roles
+     * @param  \App\Repositories\Backend\Auth\RoleRepository  $roles
      */
     public function __construct(RoleRepository $repository)
     {
@@ -26,8 +26,7 @@ public function __construct(RoleRepository $repository)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Auth\Role\ManageRoleRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\Auth\Role\ManageRoleRequest  $request
      * @return mixed
      */
     public function __invoke(ManageRoleRequest $request)
diff --git a/app/Http/Controllers/Backend/Auth/User/UserAccessController.php b/app/Http/Controllers/Backend/Auth/User/UserAccessController.php
index 06ec8e09..f53d5170 100755
--- a/app/Http/Controllers/Backend/Auth/User/UserAccessController.php
+++ b/app/Http/Controllers/Backend/Auth/User/UserAccessController.php
@@ -14,12 +14,11 @@
 class UserAccessController extends Controller
 {
     /**
-     * @param User              $user
-     * @param ManageUserRequest $request
+     * @param  User  $user
+     * @param  ManageUserRequest  $request
+     * @return \Illuminate\Http\RedirectResponse
      *
      * @throws GeneralException
-     *
-     * @return \Illuminate\Http\RedirectResponse
      */
     public function loginAs(User $user, ManageUserRequest $request)
     {
diff --git a/app/Http/Controllers/Backend/Auth/User/UserConfirmationController.php b/app/Http/Controllers/Backend/Auth/User/UserConfirmationController.php
index 020356ab..b1a5110e 100755
--- a/app/Http/Controllers/Backend/Auth/User/UserConfirmationController.php
+++ b/app/Http/Controllers/Backend/Auth/User/UserConfirmationController.php
@@ -16,7 +16,7 @@ class UserConfirmationController extends Controller
     protected $repository;
 
     /**
-     * @param \App\Repositories\Backend\Auth\UserRepository $repository
+     * @param  \App\Repositories\Backend\Auth\UserRepository  $repository
      */
     public function __construct(UserRepository $repository)
     {
@@ -24,9 +24,8 @@ public function __construct(UserRepository $repository)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Auth\User\ManageUserRequest $request
-     * @param \App\Models\Auth\User $user
-     *
+     * @param  \App\Http\Requests\Backend\Auth\User\ManageUserRequest  $request
+     * @param  \App\Models\Auth\User  $user
      * @return mixed
      */
     public function sendConfirmationEmail(ManageUserRequest $request, User $user)
@@ -46,11 +45,11 @@ public function sendConfirmationEmail(ManageUserRequest $request, User $user)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Auth\User\ManageUserRequest $request
-     * @param \App\Models\Auth\User $user
+     * @param  \App\Http\Requests\Backend\Auth\User\ManageUserRequest  $request
+     * @param  \App\Models\Auth\User  $user
+     * @return mixed
      *
      * @throws \App\Exceptions\GeneralException
-     * @return mixed
      */
     public function confirm(ManageUserRequest $request, User $user)
     {
@@ -60,11 +59,11 @@ public function confirm(ManageUserRequest $request, User $user)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Auth\User\ManageUserRequest $request
-     * @param \App\Models\Auth\User $user
+     * @param  \App\Http\Requests\Backend\Auth\User\ManageUserRequest  $request
+     * @param  \App\Models\Auth\User  $user
+     * @return mixed
      *
      * @throws \App\Exceptions\GeneralException
-     * @return mixed
      */
     public function unconfirm(ManageUserRequest $request, User $user)
     {
diff --git a/app/Http/Controllers/Backend/Auth/User/UserController.php b/app/Http/Controllers/Backend/Auth/User/UserController.php
index 2126f5cc..e7ca4257 100755
--- a/app/Http/Controllers/Backend/Auth/User/UserController.php
+++ b/app/Http/Controllers/Backend/Auth/User/UserController.php
@@ -26,7 +26,7 @@ class UserController extends Controller
     protected $roleRepository;
 
     /**
-     * @param \App\Repositories\Backend\Auth\UserRepository $userRepository
+     * @param  \App\Repositories\Backend\Auth\UserRepository  $userRepository
      */
     public function __construct(UserRepository $userRepository, RoleRepository $roleRepository)
     {
@@ -36,8 +36,7 @@ public function __construct(UserRepository $userRepository, RoleRepository $role
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Auth\User\ManageUserRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\Auth\User\ManageUserRequest  $request
      * @return \App\Http\Responses\ViewResponse
      */
     public function index(ManageUserRequest $request)
@@ -46,8 +45,7 @@ public function index(ManageUserRequest $request)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Auth\User\ManageUserRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\Auth\User\ManageUserRequest  $request
      * @return mixed
      */
     public function create(ManageUserRequest $request)
@@ -57,10 +55,10 @@ public function create(ManageUserRequest $request)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Auth\User\StoreUserRequest $request
+     * @param  \App\Http\Requests\Backend\Auth\User\StoreUserRequest  $request
+     * @return mixed
      *
      * @throws \Throwable
-     * @return mixed
      */
     public function store(StoreUserRequest $request)
     {
@@ -70,9 +68,8 @@ public function store(StoreUserRequest $request)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Auth\User\ManageUserRequest $request
-     * @param \App\Models\Auth\User $user
-     *
+     * @param  \App\Http\Requests\Backend\Auth\User\ManageUserRequest  $request
+     * @param  \App\Models\Auth\User  $user
      * @return mixed
      */
     public function show(ManageUserRequest $request, User $user)
@@ -82,9 +79,8 @@ public function show(ManageUserRequest $request, User $user)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Auth\User\ManageUserRequest $request
-     * @param \App\Models\Auth\User $user
-     *
+     * @param  \App\Http\Requests\Backend\Auth\User\ManageUserRequest  $request
+     * @param  \App\Models\Auth\User  $user
      * @return mixed
      */
     public function edit(ManageUserRequest $request, User $user, PermissionRepository $permissionRepository)
@@ -98,12 +94,12 @@ public function edit(ManageUserRequest $request, User $user, PermissionRepositor
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Auth\User\UpdateUserRequest $request
-     * @param \App\Models\Auth\User $user
+     * @param  \App\Http\Requests\Backend\Auth\User\UpdateUserRequest  $request
+     * @param  \App\Models\Auth\User  $user
+     * @return mixed
      *
      * @throws \App\Exceptions\GeneralException
      * @throws \Throwable
-     * @return mixed
      */
     public function update(UpdateUserRequest $request, User $user)
     {
@@ -113,11 +109,11 @@ public function update(UpdateUserRequest $request, User $user)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Auth\User\ManageUserRequest $request
-     * @param \App\Models\Auth\User $user
+     * @param  \App\Http\Requests\Backend\Auth\User\ManageUserRequest  $request
+     * @param  \App\Models\Auth\User  $user
+     * @return mixed
      *
      * @throws \Exception
-     * @return mixed
      */
     public function destroy(ManageUserRequest $request, User $user)
     {
diff --git a/app/Http/Controllers/Backend/Auth/User/UserPasswordController.php b/app/Http/Controllers/Backend/Auth/User/UserPasswordController.php
index 5e9fe9d1..59f304ea 100755
--- a/app/Http/Controllers/Backend/Auth/User/UserPasswordController.php
+++ b/app/Http/Controllers/Backend/Auth/User/UserPasswordController.php
@@ -16,7 +16,7 @@ class UserPasswordController extends Controller
     protected $repository;
 
     /**
-     * @param \App\Repositories\Backend\Auth\UserRepository $userRepository
+     * @param  \App\Repositories\Backend\Auth\UserRepository  $userRepository
      */
     public function __construct(UserRepository $repository)
     {
@@ -24,9 +24,8 @@ public function __construct(UserRepository $repository)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Auth\User\ManageUserRequest $request
-     * @param \App\Models\Auth\User $user
-     *
+     * @param  \App\Http\Requests\Backend\Auth\User\ManageUserRequest  $request
+     * @param  \App\Models\Auth\User  $user
      * @return mixed
      */
     public function edit(ManageUserRequest $request, User $user)
@@ -35,11 +34,11 @@ public function edit(ManageUserRequest $request, User $user)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Auth\User\UpdateUserPasswordRequest $request
-     * @param \App\Models\Auth\User $user
+     * @param  \App\Http\Requests\Backend\Auth\User\UpdateUserPasswordRequest  $request
+     * @param  \App\Models\Auth\User  $user
+     * @return mixed
      *
      * @throws \App\Exceptions\GeneralException
-     * @return mixed
      */
     public function update(UpdateUserPasswordRequest $request, User $user)
     {
diff --git a/app/Http/Controllers/Backend/Auth/User/UserSessionController.php b/app/Http/Controllers/Backend/Auth/User/UserSessionController.php
index e6e34560..1d90a597 100755
--- a/app/Http/Controllers/Backend/Auth/User/UserSessionController.php
+++ b/app/Http/Controllers/Backend/Auth/User/UserSessionController.php
@@ -12,9 +12,8 @@
 class UserSessionController extends Controller
 {
     /**
-     * @param \App\Http\Requests\Backend\Auth\User\ManageUserRequest $request
-     * @param \App\Models\Auth\User $user
-     *
+     * @param  \App\Http\Requests\Backend\Auth\User\ManageUserRequest  $request
+     * @param  \App\Models\Auth\User  $user
      * @return mixed
      */
     public function clearSession(ManageUserRequest $request, User $user)
diff --git a/app/Http/Controllers/Backend/Auth/User/UserSocialController.php b/app/Http/Controllers/Backend/Auth/User/UserSocialController.php
index 68276819..72a99af7 100755
--- a/app/Http/Controllers/Backend/Auth/User/UserSocialController.php
+++ b/app/Http/Controllers/Backend/Auth/User/UserSocialController.php
@@ -14,13 +14,13 @@
 class UserSocialController extends Controller
 {
     /**
-     * @param \App\Http\Requests\Backend\Auth\User\ManageUserRequest $request
-     * @param \App\Repositories\Backend\Auth\User\SocialRepository  $socialRepository
-     * @param \App\Models\Auth\User $user
-     * @param \App\Models\Auth\SocialAccount $social
+     * @param  \App\Http\Requests\Backend\Auth\User\ManageUserRequest  $request
+     * @param  \App\Repositories\Backend\Auth\User\SocialRepository  $socialRepository
+     * @param  \App\Models\Auth\User  $user
+     * @param  \App\Models\Auth\SocialAccount  $social
+     * @return mixed
      *
      * @throws \App\Exceptions\GeneralException
-     * @return mixed
      */
     public function unlink(ManageUserRequest $request, SocialRepository $socialRepository, User $user, SocialAccount $social)
     {
diff --git a/app/Http/Controllers/Backend/Auth/User/UserStatusController.php b/app/Http/Controllers/Backend/Auth/User/UserStatusController.php
index 21d3bd91..93f82ed2 100755
--- a/app/Http/Controllers/Backend/Auth/User/UserStatusController.php
+++ b/app/Http/Controllers/Backend/Auth/User/UserStatusController.php
@@ -19,7 +19,7 @@ class UserStatusController extends Controller
     protected $repository;
 
     /**
-     * @param \App\Repositories\Backend\Auth\UserRepository $repository
+     * @param  \App\Repositories\Backend\Auth\UserRepository  $repository
      */
     public function __construct(UserRepository $repository)
     {
@@ -28,8 +28,7 @@ public function __construct(UserRepository $repository)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Auth\User\ManageUserRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\Auth\User\ManageUserRequest  $request
      * @return mixed
      */
     public function getDeactivated(ManageUserRequest $request)
@@ -39,8 +38,7 @@ public function getDeactivated(ManageUserRequest $request)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Auth\User\ManageUserRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\Auth\User\ManageUserRequest  $request
      * @return mixed
      */
     public function getDeleted(ManageUserRequest $request)
@@ -49,12 +47,12 @@ public function getDeleted(ManageUserRequest $request)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Auth\User\ManageUserRequest $request
-     * @param \App\Models\Auth\User $user
-     * @param int $status
+     * @param  \App\Http\Requests\Backend\Auth\User\ManageUserRequest  $request
+     * @param  \App\Models\Auth\User  $user
+     * @param  int  $status
+     * @return mixed
      *
      * @throws \App\Exceptions\GeneralException
-     * @return mixed
      */
     public function mark(ManageUserRequest $request, User $user, $status)
     {
@@ -68,12 +66,12 @@ public function mark(ManageUserRequest $request, User $user, $status)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Auth\User\ManageUserRequest $request
-     * @param \App\Models\Auth\User $deletedUser
+     * @param  \App\Http\Requests\Backend\Auth\User\ManageUserRequest  $request
+     * @param  \App\Models\Auth\User  $deletedUser
+     * @return mixed
      *
      * @throws \App\Exceptions\GeneralException
      * @throws \Throwable
-     * @return mixed
      */
     public function delete(ManageUserRequest $request, User $deletedUser)
     {
@@ -83,11 +81,11 @@ public function delete(ManageUserRequest $request, User $deletedUser)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Auth\User\ManageUserRequest $request
-     * @param \App\Models\Auth\User $deletedUser
+     * @param  \App\Http\Requests\Backend\Auth\User\ManageUserRequest  $request
+     * @param  \App\Models\Auth\User  $deletedUser
+     * @return mixed
      *
      * @throws \App\Exceptions\GeneralException
-     * @return mixed
      */
     public function restore(ManageUserRequest $request, User $deletedUser)
     {
diff --git a/app/Http/Controllers/Backend/Auth/User/UserTableController.php b/app/Http/Controllers/Backend/Auth/User/UserTableController.php
index 20aa7e1d..2ceb0d35 100755
--- a/app/Http/Controllers/Backend/Auth/User/UserTableController.php
+++ b/app/Http/Controllers/Backend/Auth/User/UserTableController.php
@@ -19,7 +19,7 @@ class UserTableController extends Controller
     protected $repository;
 
     /**
-     * @param \App\Repositories\Backend\Auth\UserRepository $repository
+     * @param  \App\Repositories\Backend\Auth\UserRepository  $repository
      */
     public function __construct(UserRepository $repository)
     {
@@ -27,8 +27,7 @@ public function __construct(UserRepository $repository)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Auth\User\ManageUserRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\Auth\User\ManageUserRequest  $request
      * @return mixed
      */
     public function __invoke(ManageUserRequest $request)
diff --git a/app/Http/Controllers/Backend/BlogCategories/BlogCategoriesController.php b/app/Http/Controllers/Backend/BlogCategories/BlogCategoriesController.php
index 32872461..4eac0f44 100755
--- a/app/Http/Controllers/Backend/BlogCategories/BlogCategoriesController.php
+++ b/app/Http/Controllers/Backend/BlogCategories/BlogCategoriesController.php
@@ -23,7 +23,7 @@ class BlogCategoriesController extends Controller
     protected $repository;
 
     /**
-     * @param \App\Repositories\Backend\BlogCategoriesRepository $repository
+     * @param  \App\Repositories\Backend\BlogCategoriesRepository  $repository
      */
     public function __construct(BlogCategoriesRepository $repository)
     {
@@ -32,8 +32,7 @@ public function __construct(BlogCategoriesRepository $repository)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\BlogCategories\ManageBlogCategoriesRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\BlogCategories\ManageBlogCategoriesRequest  $request
      * @return ViewResponse
      */
     public function index(ManageBlogCategoriesRequest $request)
@@ -42,8 +41,7 @@ public function index(ManageBlogCategoriesRequest $request)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\BlogCategories\CreateBlogCategoriesRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\BlogCategories\CreateBlogCategoriesRequest  $request
      * @return \App\Http\Responses\ViewResponse
      */
     public function create(CreateBlogCategoriesRequest $request)
@@ -65,9 +63,8 @@ public function store(StoreBlogCategoriesRequest $request)
     }
 
     /**
-     * @param \App\Models\BlogCategory $blogCategory
-     * @param \App\Http\Requests\Backend\BlogCategories\ManageBlogCategoriesRequest $request
-     *
+     * @param  \App\Models\BlogCategory  $blogCategory
+     * @param  \App\Http\Requests\Backend\BlogCategories\ManageBlogCategoriesRequest  $request
      * @return \App\Http\Responses\Backend\BlogCategory\EditResponse
      */
     public function edit(BlogCategory $blogCategory, ManageBlogCategoriesRequest $request)
@@ -76,9 +73,8 @@ public function edit(BlogCategory $blogCategory, ManageBlogCategoriesRequest $re
     }
 
     /**
-     * @param \App\Models\BlogCategory $blogCategory
-     * @param \App\Http\Requests\Backend\BlogCategories\UpdateBlogCategoriesRequest $request
-     *
+     * @param  \App\Models\BlogCategory  $blogCategory
+     * @param  \App\Http\Requests\Backend\BlogCategories\UpdateBlogCategoriesRequest  $request
      * @return \App\Http\Responses\RedirectResponse
      */
     public function update(BlogCategory $blogCategory, UpdateBlogCategoriesRequest $request)
@@ -89,9 +85,8 @@ public function update(BlogCategory $blogCategory, UpdateBlogCategoriesRequest $
     }
 
     /**
-     * @param \App\Models\BlogCategory $blogCategory
-     * @param \App\Http\Requests\Backend\BlogCategories\DeleteBlogCategoriesRequest $request
-     *
+     * @param  \App\Models\BlogCategory  $blogCategory
+     * @param  \App\Http\Requests\Backend\BlogCategories\DeleteBlogCategoriesRequest  $request
      * @return mixed
      */
     public function destroy(BlogCategory $blogCategory, DeleteBlogCategoriesRequest $request)
diff --git a/app/Http/Controllers/Backend/BlogCategories/BlogCategoriesTableController.php b/app/Http/Controllers/Backend/BlogCategories/BlogCategoriesTableController.php
index 989a581f..bd5782ae 100755
--- a/app/Http/Controllers/Backend/BlogCategories/BlogCategoriesTableController.php
+++ b/app/Http/Controllers/Backend/BlogCategories/BlogCategoriesTableController.php
@@ -18,7 +18,7 @@ class BlogCategoriesTableController extends Controller
     protected $repository;
 
     /**
-     * @param \App\Repositories\Backend\BlogCategories\BlogCategoriesRepository $repository
+     * @param  \App\Repositories\Backend\BlogCategories\BlogCategoriesRepository  $repository
      */
     public function __construct(BlogCategoriesRepository $repository)
     {
@@ -26,8 +26,7 @@ public function __construct(BlogCategoriesRepository $repository)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\BlogCategories\ManageBlogCategoriesRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\BlogCategories\ManageBlogCategoriesRequest  $request
      * @return mixed
      */
     public function __invoke(ManageBlogCategoriesRequest $request)
diff --git a/app/Http/Controllers/Backend/BlogTags/BlogTagsController.php b/app/Http/Controllers/Backend/BlogTags/BlogTagsController.php
index 00bb96c2..5b6f4c5c 100755
--- a/app/Http/Controllers/Backend/BlogTags/BlogTagsController.php
+++ b/app/Http/Controllers/Backend/BlogTags/BlogTagsController.php
@@ -23,7 +23,7 @@ class BlogTagsController extends Controller
     protected $repository;
 
     /**
-     * @param \App\Repositories\Backend\BlogTagsRepository $repository
+     * @param  \App\Repositories\Backend\BlogTagsRepository  $repository
      */
     public function __construct(BlogTagsRepository $repository)
     {
@@ -32,8 +32,7 @@ public function __construct(BlogTagsRepository $repository)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\BlogTags\ManageBlogTagsRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\BlogTags\ManageBlogTagsRequest  $request
      * @return ViewResponse
      */
     public function index(ManageBlogTagsRequest $request)
@@ -43,8 +42,8 @@ public function index(ManageBlogTagsRequest $request)
 
     /**
      * Show the form for creating a new resource.
-     * @param \App\Http\Requests\Backend\BlogTags\CreateBlogTagsRequest
      *
+     * @param \App\Http\Requests\Backend\BlogTags\CreateBlogTagsRequest
      * @return ViewResponse
      */
     public function create(CreateBlogTagsRequest $request)
@@ -53,8 +52,7 @@ public function create(CreateBlogTagsRequest $request)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\BlogTags\StoreBlogTagsRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\BlogTags\StoreBlogTagsRequest  $request
      * @return \App\Http\Responses\RedirectResponse
      */
     public function store(StoreBlogTagsRequest $request)
@@ -65,9 +63,8 @@ public function store(StoreBlogTagsRequest $request)
     }
 
     /**
-     * @param \App\Models\BlogTag $blogTag
-     * @param \App\Http\Requests\Backend\BlogTags\ManageBlogTagsRequest $request
-     *
+     * @param  \App\Models\BlogTag  $blogTag
+     * @param  \App\Http\Requests\Backend\BlogTags\ManageBlogTagsRequest  $request
      * @return \App\Http\Responses\Backend\BlogTag\EditResponse
      */
     public function edit(BlogTag $blogTag, ManageBlogTagsRequest $request)
@@ -76,9 +73,8 @@ public function edit(BlogTag $blogTag, ManageBlogTagsRequest $request)
     }
 
     /**
-     * @param \App\Models\BlogTag $blogTag
-     * @param \App\Http\Requests\Backend\BlogTags\UpdateBlogTagsRequest $request
-     *
+     * @param  \App\Models\BlogTag  $blogTag
+     * @param  \App\Http\Requests\Backend\BlogTags\UpdateBlogTagsRequest  $request
      * @return \App\Http\Responses\RedirectResponse
      */
     public function update(BlogTag $blogTag, UpdateBlogTagsRequest $request)
@@ -89,9 +85,8 @@ public function update(BlogTag $blogTag, UpdateBlogTagsRequest $request)
     }
 
     /**
-     * @param \App\Models\BlogTag $blogTag
-     * @param \App\Http\Requests\Backend\BlogTags\DeleteBlogTagsRequest $request
-     *
+     * @param  \App\Models\BlogTag  $blogTag
+     * @param  \App\Http\Requests\Backend\BlogTags\DeleteBlogTagsRequest  $request
      * @return \App\Http\Responses\RedirectResponse
      */
     public function destroy(BlogTag $blogTag, DeleteBlogTagsRequest $request)
diff --git a/app/Http/Controllers/Backend/BlogTags/BlogTagsTableController.php b/app/Http/Controllers/Backend/BlogTags/BlogTagsTableController.php
index fd063cca..f2b0db61 100755
--- a/app/Http/Controllers/Backend/BlogTags/BlogTagsTableController.php
+++ b/app/Http/Controllers/Backend/BlogTags/BlogTagsTableController.php
@@ -16,7 +16,7 @@ class BlogTagsTableController extends Controller
     protected $repository;
 
     /**
-     * @param \App\Repositories\Backend\BlogTagsRepository $repository
+     * @param  \App\Repositories\Backend\BlogTagsRepository  $repository
      */
     public function __construct(BlogTagsRepository $repository)
     {
@@ -24,8 +24,7 @@ public function __construct(BlogTagsRepository $repository)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\BlogTags\ManageBlogTagsRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\BlogTags\ManageBlogTagsRequest  $request
      * @return mixed
      */
     public function __invoke(ManageBlogTagsRequest $request)
diff --git a/app/Http/Controllers/Backend/Blogs/BlogsController.php b/app/Http/Controllers/Backend/Blogs/BlogsController.php
index 463b33cb..b3630968 100755
--- a/app/Http/Controllers/Backend/Blogs/BlogsController.php
+++ b/app/Http/Controllers/Backend/Blogs/BlogsController.php
@@ -23,7 +23,7 @@ class BlogsController extends Controller
     protected $repository;
 
     /**
-     * @param \App\Repositories\Backend\BlogsRepository $blog
+     * @param  \App\Repositories\Backend\BlogsRepository  $blog
      */
     public function __construct(BlogsRepository $repository)
     {
@@ -32,8 +32,7 @@ public function __construct(BlogsRepository $repository)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Blogs\ManageBlogsRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\Blogs\ManageBlogsRequest  $request
      * @return ViewResponse
      */
     public function index(ManageBlogsRequest $request)
@@ -42,8 +41,7 @@ public function index(ManageBlogsRequest $request)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Blogs\ManageBlogsRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\Blogs\ManageBlogsRequest  $request
      * @return ViewResponse
      */
     public function create(ManageBlogsRequest $request, Blog $blog)
@@ -55,8 +53,7 @@ public function create(ManageBlogsRequest $request, Blog $blog)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Blogs\StoreBlogsRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\Blogs\StoreBlogsRequest  $request
      * @return \App\Http\Responses\RedirectResponse
      */
     public function store(StoreBlogsRequest $request)
@@ -67,9 +64,8 @@ public function store(StoreBlogsRequest $request)
     }
 
     /**
-     * @param \App\Models\Blog $blog
-     * @param \App\Http\Requests\Backend\Blogs\ManageBlogsRequest $request
-     *
+     * @param  \App\Models\Blog  $blog
+     * @param  \App\Http\Requests\Backend\Blogs\ManageBlogsRequest  $request
      * @return \App\Http\Responses\Backend\Blog\EditResponse
      */
     public function edit(Blog $blog, ManageBlogsRequest $request)
@@ -81,9 +77,8 @@ public function edit(Blog $blog, ManageBlogsRequest $request)
     }
 
     /**
-     * @param \App\Models\Blogs\Blog $blog
-     * @param \App\Http\Requests\Backend\Blogs\UpdateBlogsRequest $request
-     *
+     * @param  \App\Models\Blogs\Blog  $blog
+     * @param  \App\Http\Requests\Backend\Blogs\UpdateBlogsRequest  $request
      * @return \App\Http\Responses\RedirectResponse
      */
     public function update(Blog $blog, UpdateBlogsRequest $request)
@@ -94,9 +89,8 @@ public function update(Blog $blog, UpdateBlogsRequest $request)
     }
 
     /**
-     * @param \App\Models\Blog $blog
-     * @param \App\Http\Requests\Backend\Blogs\ManageBlogsRequest $request
-     *
+     * @param  \App\Models\Blog  $blog
+     * @param  \App\Http\Requests\Backend\Blogs\ManageBlogsRequest  $request
      * @return \App\Http\Responses\RedirectResponse
      */
     public function destroy(Blog $blog, ManageBlogsRequest $request)
diff --git a/app/Http/Controllers/Backend/Blogs/BlogsTableController.php b/app/Http/Controllers/Backend/Blogs/BlogsTableController.php
index 55c00ac1..207ce62e 100755
--- a/app/Http/Controllers/Backend/Blogs/BlogsTableController.php
+++ b/app/Http/Controllers/Backend/Blogs/BlogsTableController.php
@@ -18,7 +18,7 @@ class BlogsTableController extends Controller
     protected $repository;
 
     /**
-     * @param \App\Repositories\Backend\BlogsRepository $repository
+     * @param  \App\Repositories\Backend\BlogsRepository  $repository
      */
     public function __construct(BlogsRepository $repository)
     {
@@ -26,8 +26,7 @@ public function __construct(BlogsRepository $repository)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Blogs\ManageBlogsRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\Blogs\ManageBlogsRequest  $request
      * @return mixed
      */
     public function __invoke(ManageBlogsRequest $request)
diff --git a/app/Http/Controllers/Backend/DashboardController.php b/app/Http/Controllers/Backend/DashboardController.php
index 45feb9a7..ec75266b 100755
--- a/app/Http/Controllers/Backend/DashboardController.php
+++ b/app/Http/Controllers/Backend/DashboardController.php
@@ -27,7 +27,7 @@ public function index()
     /**
      * This function is used to get permissions details by role.
      *
-     * @param \Illuminate\Http\Request\Request $request
+     * @param  \Illuminate\Http\Request\Request  $request
      */
     public function getPermissionByRole(Request $request)
     {
diff --git a/app/Http/Controllers/Backend/EmailTemplates/EmailTemplatesController.php b/app/Http/Controllers/Backend/EmailTemplates/EmailTemplatesController.php
index 5df64609..5869e8d9 100755
--- a/app/Http/Controllers/Backend/EmailTemplates/EmailTemplatesController.php
+++ b/app/Http/Controllers/Backend/EmailTemplates/EmailTemplatesController.php
@@ -23,7 +23,7 @@ class EmailTemplatesController extends Controller
     protected $repository;
 
     /**
-     * @param \App\Repositories\Backend\EmailTemplatesRepository $emailTemplate
+     * @param  \App\Repositories\Backend\EmailTemplatesRepository  $emailTemplate
      */
     public function __construct(EmailTemplatesRepository $repository)
     {
@@ -32,8 +32,7 @@ public function __construct(EmailTemplatesRepository $repository)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\EmailTemplates\ManageEmailTemplatesRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\EmailTemplates\ManageEmailTemplatesRequest  $request
      * @return ViewResponse
      */
     public function index(ManageEmailTemplatesRequest $request)
@@ -43,7 +42,6 @@ public function index(ManageEmailTemplatesRequest $request)
 
     /**
      * @param \App\Http\Requests\Backend\EmailTemplates\CreateEmailTemplatesRequest
-     *
      * @return ViewResponse
      */
     public function create(CreateEmailTemplatesRequest $request)
@@ -52,8 +50,7 @@ public function create(CreateEmailTemplatesRequest $request)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\EmailTemplates\StoreEmailTemplatesRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\EmailTemplates\StoreEmailTemplatesRequest  $request
      * @return \App\Http\Responses\RedirectResponse
      */
     public function store(StoreEmailTemplatesRequest $request)
@@ -64,9 +61,8 @@ public function store(StoreEmailTemplatesRequest $request)
     }
 
     /**
-     * @param \App\Models\EmailTemplate $emailTemplate
-     * @param \App\Http\Requests\Backend\EmailTemplates\ManageEmailTemplatesRequest $request
-     *
+     * @param  \App\Models\EmailTemplate  $emailTemplate
+     * @param  \App\Http\Requests\Backend\EmailTemplates\ManageEmailTemplatesRequest  $request
      * @return \App\Http\Responses\Backend\EmailTemplates\EditResponse
      */
     public function edit(EmailTemplate $emailTemplate, ManageEmailTemplatesRequest $request)
@@ -75,9 +71,8 @@ public function edit(EmailTemplate $emailTemplate, ManageEmailTemplatesRequest $
     }
 
     /**
-     * @param \App\Models\EmailTemplate $emailTemplate
-     * @param \App\Http\Requests\Backend\EmailTemplates\UpdateEmailTemplatesRequest $request
-     *
+     * @param  \App\Models\EmailTemplate  $emailTemplate
+     * @param  \App\Http\Requests\Backend\EmailTemplates\UpdateEmailTemplatesRequest  $request
      * @return \App\Http\Responses\RedirectResponse
      */
     public function update(EmailTemplate $emailTemplate, UpdateEmailTemplatesRequest $request)
@@ -88,9 +83,8 @@ public function update(EmailTemplate $emailTemplate, UpdateEmailTemplatesRequest
     }
 
     /**
-     * @param \App\Models\EmailTemplate $emailTemplate
-     * @param \App\Http\Requests\Backend\EmailTemplates\DeleteEmailTemplatesRequest $request
-     *
+     * @param  \App\Models\EmailTemplate  $emailTemplate
+     * @param  \App\Http\Requests\Backend\EmailTemplates\DeleteEmailTemplatesRequest  $request
      * @return \App\Http\Responses\RedirectResponse
      */
     public function destroy(EmailTemplate $emailTemplate, DeleteEmailTemplatesRequest $request)
diff --git a/app/Http/Controllers/Backend/EmailTemplates/EmailTemplatesTableController.php b/app/Http/Controllers/Backend/EmailTemplates/EmailTemplatesTableController.php
index 60c2c2e1..45007893 100755
--- a/app/Http/Controllers/Backend/EmailTemplates/EmailTemplatesTableController.php
+++ b/app/Http/Controllers/Backend/EmailTemplates/EmailTemplatesTableController.php
@@ -15,7 +15,7 @@ class EmailTemplatesTableController extends Controller
     protected $repository;
 
     /**
-     * @param \App\Repositories\Backend\EmailTemplatesRepository $repository
+     * @param  \App\Repositories\Backend\EmailTemplatesRepository  $repository
      */
     public function __construct(EmailTemplatesRepository $repository)
     {
@@ -23,8 +23,7 @@ public function __construct(EmailTemplatesRepository $repository)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\EmailTemplates\ManageEmailTemplatesRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\EmailTemplates\ManageEmailTemplatesRequest  $request
      * @return mixed
      */
     public function __invoke(ManageEmailTemplatesRequest $request)
diff --git a/app/Http/Controllers/Backend/Faqs/FaqsController.php b/app/Http/Controllers/Backend/Faqs/FaqsController.php
index aaa60f51..e24a2244 100755
--- a/app/Http/Controllers/Backend/Faqs/FaqsController.php
+++ b/app/Http/Controllers/Backend/Faqs/FaqsController.php
@@ -22,7 +22,7 @@ class FaqsController extends Controller
     protected $repository;
 
     /**
-     * @param \App\Repositories\Backend\FaqsRepository $faq
+     * @param  \App\Repositories\Backend\FaqsRepository  $faq
      */
     public function __construct(FaqsRepository $repository)
     {
@@ -31,8 +31,7 @@ public function __construct(FaqsRepository $repository)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Faqs\ManageFaqsRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\Faqs\ManageFaqsRequest  $request
      * @return ViewResponse
      */
     public function index(ManageFaqsRequest $request)
@@ -41,8 +40,7 @@ public function index(ManageFaqsRequest $request)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Faqs\CreateFaqsRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\Faqs\CreateFaqsRequest  $request
      * @return ViewResponse
      */
     public function create(CreateFaqsRequest $request)
@@ -51,8 +49,7 @@ public function create(CreateFaqsRequest $request)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Faqs\StoreFaqsRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\Faqs\StoreFaqsRequest  $request
      * @return \App\Http\Responses\RedirectResponse
      */
     public function store(StoreFaqsRequest $request)
@@ -63,9 +60,8 @@ public function store(StoreFaqsRequest $request)
     }
 
     /**
-     * @param \App\Models\Faq $faq
-     * @param \App\Http\Requests\Backend\Faqs\ManagePageRequest $request
-     *
+     * @param  \App\Models\Faq  $faq
+     * @param  \App\Http\Requests\Backend\Faqs\ManagePageRequest  $request
      * @return ViewResponse
      */
     public function edit(Faq $faq, ManageFaqsRequest $request)
@@ -74,9 +70,8 @@ public function edit(Faq $faq, ManageFaqsRequest $request)
     }
 
     /**
-     * @param \App\Models\Faq $faq
-     * @param \App\Http\Requests\Backend\Faqs\UpdateFaqsRequest $request
-     *
+     * @param  \App\Models\Faq  $faq
+     * @param  \App\Http\Requests\Backend\Faqs\UpdateFaqsRequest  $request
      * @return \App\Http\Responses\RedirectResponse
      */
     public function update(Faq $faq, UpdateFaqsRequest $request)
@@ -87,9 +82,8 @@ public function update(Faq $faq, UpdateFaqsRequest $request)
     }
 
     /**
-     * @param \App\Models\Faq $faq
-     * @param \App\Http\Requests\Backend\Pages\DeleteFaqRequest $request
-     *
+     * @param  \App\Models\Faq  $faq
+     * @param  \App\Http\Requests\Backend\Pages\DeleteFaqRequest  $request
      * @return \App\Http\Responses\RedirectResponse
      */
     public function destroy(Faq $faq, DeleteFaqsRequest $request)
diff --git a/app/Http/Controllers/Backend/Faqs/FaqsTableController.php b/app/Http/Controllers/Backend/Faqs/FaqsTableController.php
index f6f82519..a6566cb8 100755
--- a/app/Http/Controllers/Backend/Faqs/FaqsTableController.php
+++ b/app/Http/Controllers/Backend/Faqs/FaqsTableController.php
@@ -16,7 +16,7 @@ class FaqsTableController extends Controller
     protected $repository;
 
     /**
-     * @param \App\Repositories\Backend\FaqsRepository $faqs
+     * @param  \App\Repositories\Backend\FaqsRepository  $faqs
      */
     public function __construct(FaqsRepository $repository)
     {
@@ -24,8 +24,7 @@ public function __construct(FaqsRepository $repository)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Faqs\ManageFaqsRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\Faqs\ManageFaqsRequest  $request
      * @return mixed
      */
     public function __invoke(ManageFaqsRequest $request)
diff --git a/app/Http/Controllers/Backend/Pages/PagesController.php b/app/Http/Controllers/Backend/Pages/PagesController.php
index 2add6333..e320d8d1 100755
--- a/app/Http/Controllers/Backend/Pages/PagesController.php
+++ b/app/Http/Controllers/Backend/Pages/PagesController.php
@@ -24,7 +24,7 @@ class PagesController extends Controller
     protected $repository;
 
     /**
-     * @param \App\Repositories\Backend\PagesRepository $repository
+     * @param  \App\Repositories\Backend\PagesRepository  $repository
      */
     public function __construct(PagesRepository $repository)
     {
@@ -33,8 +33,7 @@ public function __construct(PagesRepository $repository)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Pages\ManagePageRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\Pages\ManagePageRequest  $request
      * @return \App\Http\Responses\ViewResponse
      */
     public function index(ManagePageRequest $request)
@@ -43,8 +42,7 @@ public function index(ManagePageRequest $request)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Pages\CreatePageRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\Pages\CreatePageRequest  $request
      * @return \App\Http\Responses\ViewResponse
      */
     public function create(CreatePageRequest $request)
@@ -53,8 +51,7 @@ public function create(CreatePageRequest $request)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Pages\StorePageRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\Pages\StorePageRequest  $request
      * @return \App\Http\Responses\RedirectResponse
      */
     public function store(StorePageRequest $request)
@@ -65,9 +62,8 @@ public function store(StorePageRequest $request)
     }
 
     /**
-     * @param \App\Models\Page $page
-     * @param \App\Http\Requests\Backend\Pages\EditPageRequest $request
-     *
+     * @param  \App\Models\Page  $page
+     * @param  \App\Http\Requests\Backend\Pages\EditPageRequest  $request
      * @return \App\Http\Responses\Backend\Blog\EditResponse
      */
     public function edit(Page $page, EditPageRequest $request)
@@ -76,9 +72,8 @@ public function edit(Page $page, EditPageRequest $request)
     }
 
     /**
-     * @param \App\Models\Page $page
-     * @param \App\Http\Requests\Backend\Pages\UpdatePageRequest $request
-     *
+     * @param  \App\Models\Page  $page
+     * @param  \App\Http\Requests\Backend\Pages\UpdatePageRequest  $request
      * @return \App\Http\Responses\RedirectResponse
      */
     public function update(Page $page, UpdatePageRequest $request)
@@ -89,9 +84,8 @@ public function update(Page $page, UpdatePageRequest $request)
     }
 
     /**
-     * @param \App\Models\Page $page
-     * @param \App\Http\Requests\Backend\Pages\DeletePageRequest $request
-     *
+     * @param  \App\Models\Page  $page
+     * @param  \App\Http\Requests\Backend\Pages\DeletePageRequest  $request
      * @return \App\Http\Responses\RedirectResponse
      */
     public function destroy(Page $page, DeletePageRequest $request)
diff --git a/app/Http/Controllers/Backend/Pages/PagesTableController.php b/app/Http/Controllers/Backend/Pages/PagesTableController.php
index 16c3043a..e2b301e4 100755
--- a/app/Http/Controllers/Backend/Pages/PagesTableController.php
+++ b/app/Http/Controllers/Backend/Pages/PagesTableController.php
@@ -15,7 +15,7 @@ class PagesTableController extends Controller
     protected $repository;
 
     /**
-     * @param \App\Repositories\Backend\PagesRepository $repository
+     * @param  \App\Repositories\Backend\PagesRepository  $repository
      */
     public function __construct(PagesRepository $repository)
     {
@@ -23,8 +23,7 @@ public function __construct(PagesRepository $repository)
     }
 
     /**
-     * @param \App\Http\Requests\Backend\Pages\ManagePageRequest $request
-     *
+     * @param  \App\Http\Requests\Backend\Pages\ManagePageRequest  $request
      * @return mixed
      */
     public function __invoke(ManagePageRequest $request)
diff --git a/app/Http/Controllers/Frontend/Auth/ConfirmAccountController.php b/app/Http/Controllers/Frontend/Auth/ConfirmAccountController.php
index 63ee4fa9..36e661f4 100755
--- a/app/Http/Controllers/Frontend/Auth/ConfirmAccountController.php
+++ b/app/Http/Controllers/Frontend/Auth/ConfirmAccountController.php
@@ -19,7 +19,7 @@ class ConfirmAccountController extends Controller
     /**
      * ConfirmAccountController constructor.
      *
-     * @param UserRepository $user
+     * @param  UserRepository  $user
      */
     public function __construct(UserRepository $user)
     {
@@ -28,9 +28,9 @@ public function __construct(UserRepository $user)
 
     /**
      * @param $token
+     * @return mixed
      *
      * @throws \App\Exceptions\GeneralException
-     * @return mixed
      */
     public function confirm($token)
     {
@@ -41,9 +41,9 @@ public function confirm($token)
 
     /**
      * @param $uuid
+     * @return mixed
      *
      * @throws \App\Exceptions\GeneralException
-     * @return mixed
      */
     public function sendConfirmationEmail($uuid)
     {
diff --git a/app/Http/Controllers/Frontend/Auth/LoginController.php b/app/Http/Controllers/Frontend/Auth/LoginController.php
index 0d07fcfa..73613ac3 100755
--- a/app/Http/Controllers/Frontend/Auth/LoginController.php
+++ b/app/Http/Controllers/Frontend/Auth/LoginController.php
@@ -66,11 +66,11 @@ protected function validateLogin(Request $request)
     /**
      * The user has been authenticated.
      *
-     * @param Request $request
-     * @param         $user
+     * @param  Request  $request
+     * @param  $user
+     * @return \Illuminate\Http\RedirectResponse
      *
      * @throws GeneralException
-     * @return \Illuminate\Http\RedirectResponse
      */
     protected function authenticated(Request $request, $user)
     {
@@ -106,8 +106,7 @@ protected function authenticated(Request $request, $user)
     /**
      * Log the user out of the application.
      *
-     * @param Request $request
-     *
+     * @param  Request  $request
      * @return \Illuminate\Http\Response
      */
     public function logout(Request $request)
diff --git a/app/Http/Controllers/Frontend/Auth/PasswordExpiredController.php b/app/Http/Controllers/Frontend/Auth/PasswordExpiredController.php
index 6c2dc92a..df8d852e 100755
--- a/app/Http/Controllers/Frontend/Auth/PasswordExpiredController.php
+++ b/app/Http/Controllers/Frontend/Auth/PasswordExpiredController.php
@@ -22,11 +22,11 @@ public function expired()
     }
 
     /**
-     * @param UpdatePasswordRequest $request
-     * @param UserRepository        $userRepository
+     * @param  UpdatePasswordRequest  $request
+     * @param  UserRepository  $userRepository
+     * @return mixed
      *
      * @throws \App\Exceptions\GeneralException
-     * @return mixed
      */
     public function update(UpdatePasswordRequest $request, UserRepository $userRepository)
     {
diff --git a/app/Http/Controllers/Frontend/Auth/RegisterController.php b/app/Http/Controllers/Frontend/Auth/RegisterController.php
index e9dae2b0..acc52942 100755
--- a/app/Http/Controllers/Frontend/Auth/RegisterController.php
+++ b/app/Http/Controllers/Frontend/Auth/RegisterController.php
@@ -23,7 +23,7 @@ class RegisterController extends Controller
     /**
      * RegisterController constructor.
      *
-     * @param UserRepository $userRepository
+     * @param  UserRepository  $userRepository
      */
     public function __construct(UserRepository $userRepository)
     {
@@ -53,10 +53,10 @@ public function showRegistrationForm()
     }
 
     /**
-     * @param RegisterRequest $request
+     * @param  RegisterRequest  $request
+     * @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector
      *
      * @throws \Throwable
-     * @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector
      */
     public function register(RegisterRequest $request)
     {
diff --git a/app/Http/Controllers/Frontend/Auth/ResetPasswordController.php b/app/Http/Controllers/Frontend/Auth/ResetPasswordController.php
index 1fb1a361..d2b7c0b1 100755
--- a/app/Http/Controllers/Frontend/Auth/ResetPasswordController.php
+++ b/app/Http/Controllers/Frontend/Auth/ResetPasswordController.php
@@ -25,7 +25,7 @@ class ResetPasswordController extends Controller
     /**
      * ChangePasswordController constructor.
      *
-     * @param UserRepository $userRepository
+     * @param  UserRepository  $userRepository
      */
     public function __construct(UserRepository $userRepository)
     {
@@ -37,8 +37,7 @@ public function __construct(UserRepository $userRepository)
      *
      * If no token is present, display the link request form.
      *
-     * @param string|null $token
-     *
+     * @param  string|null  $token
      * @return \Illuminate\Http\Response
      */
     public function showResetForm($token = null)
diff --git a/app/Http/Controllers/Frontend/Auth/SocialLoginController.php b/app/Http/Controllers/Frontend/Auth/SocialLoginController.php
index 26777c10..e959d1f6 100755
--- a/app/Http/Controllers/Frontend/Auth/SocialLoginController.php
+++ b/app/Http/Controllers/Frontend/Auth/SocialLoginController.php
@@ -28,8 +28,8 @@ class SocialLoginController extends Controller
     /**
      * SocialLoginController constructor.
      *
-     * @param UserRepository  $userRepository
-     * @param SocialiteHelper $socialiteHelper
+     * @param  UserRepository  $userRepository
+     * @param  SocialiteHelper  $socialiteHelper
      */
     public function __construct(UserRepository $userRepository, SocialiteHelper $socialiteHelper)
     {
@@ -38,12 +38,11 @@ public function __construct(UserRepository $userRepository, SocialiteHelper $soc
     }
 
     /**
-     * @param Request $request
+     * @param  Request  $request
      * @param $provider
+     * @return \Illuminate\Http\RedirectResponse|mixed
      *
      * @throws GeneralException
-     *
-     * @return \Illuminate\Http\RedirectResponse|mixed
      */
     public function login(Request $request, $provider)
     {
@@ -99,7 +98,6 @@ public function login(Request $request, $provider)
 
     /**
      * @param  $provider
-     *
      * @return mixed
      */
     protected function getAuthorizationFirst($provider)
@@ -126,7 +124,6 @@ protected function getAuthorizationFirst($provider)
 
     /**
      * @param $provider
-     *
      * @return mixed
      */
     protected function getProviderUser($provider)
diff --git a/app/Http/Controllers/Frontend/Auth/UpdatePasswordController.php b/app/Http/Controllers/Frontend/Auth/UpdatePasswordController.php
index 3483ee41..59530059 100755
--- a/app/Http/Controllers/Frontend/Auth/UpdatePasswordController.php
+++ b/app/Http/Controllers/Frontend/Auth/UpdatePasswordController.php
@@ -19,7 +19,7 @@ class UpdatePasswordController extends Controller
     /**
      * ChangePasswordController constructor.
      *
-     * @param UserRepository $userRepository
+     * @param  UserRepository  $userRepository
      */
     public function __construct(UserRepository $userRepository)
     {
@@ -27,10 +27,10 @@ public function __construct(UserRepository $userRepository)
     }
 
     /**
-     * @param UpdatePasswordRequest $request
+     * @param  UpdatePasswordRequest  $request
+     * @return mixed
      *
      * @throws \App\Exceptions\GeneralException
-     * @return mixed
      */
     public function update(UpdatePasswordRequest $request)
     {
diff --git a/app/Http/Controllers/Frontend/ContactController.php b/app/Http/Controllers/Frontend/ContactController.php
index 689ba0b9..51e82bb5 100755
--- a/app/Http/Controllers/Frontend/ContactController.php
+++ b/app/Http/Controllers/Frontend/ContactController.php
@@ -21,8 +21,7 @@ public function index()
     }
 
     /**
-     * @param SendContactRequest $request
-     *
+     * @param  SendContactRequest  $request
      * @return mixed
      */
     public function send(SendContactRequest $request)
diff --git a/app/Http/Controllers/Frontend/User/ProfileController.php b/app/Http/Controllers/Frontend/User/ProfileController.php
index 658c167f..a0aa8f8a 100755
--- a/app/Http/Controllers/Frontend/User/ProfileController.php
+++ b/app/Http/Controllers/Frontend/User/ProfileController.php
@@ -19,7 +19,7 @@ class ProfileController extends Controller
     /**
      * ProfileController constructor.
      *
-     * @param UserRepository $userRepository
+     * @param  UserRepository  $userRepository
      */
     public function __construct(UserRepository $userRepository)
     {
@@ -27,10 +27,10 @@ public function __construct(UserRepository $userRepository)
     }
 
     /**
-     * @param UpdateProfileRequest $request
+     * @param  UpdateProfileRequest  $request
+     * @return mixed
      *
      * @throws \App\Exceptions\GeneralException
-     * @return mixed
      */
     public function update(UpdateProfileRequest $request)
     {
diff --git a/app/Http/Controllers/LanguageController.php b/app/Http/Controllers/LanguageController.php
index 4e178b55..a8a4d031 100755
--- a/app/Http/Controllers/LanguageController.php
+++ b/app/Http/Controllers/LanguageController.php
@@ -9,7 +9,6 @@ class LanguageController extends Controller
 {
     /**
      * @param $locale
-     *
      * @return \Illuminate\Http\RedirectResponse
      */
     public function swap($locale)
diff --git a/app/Http/Middleware/CheckForReadOnlyMode.php b/app/Http/Middleware/CheckForReadOnlyMode.php
index e4766610..7e50caae 100755
--- a/app/Http/Middleware/CheckForReadOnlyMode.php
+++ b/app/Http/Middleware/CheckForReadOnlyMode.php
@@ -24,9 +24,8 @@ class CheckForReadOnlyMode
     /**
      * Handle an incoming request.
      *
-     * @param \Illuminate\Http\Request $request
-     * @param \Closure                 $next
-     *
+     * @param  \Illuminate\Http\Request  $request
+     * @param  \Closure  $next
      * @return mixed
      */
     public function handle($request, Closure $next)
diff --git a/app/Http/Middleware/LocaleMiddleware.php b/app/Http/Middleware/LocaleMiddleware.php
index 4e3b02b8..925fb30f 100755
--- a/app/Http/Middleware/LocaleMiddleware.php
+++ b/app/Http/Middleware/LocaleMiddleware.php
@@ -13,9 +13,8 @@ class LocaleMiddleware
     /**
      * Handle an incoming request.
      *
-     * @param \Illuminate\Http\Request $request
-     * @param \Closure                 $next
-     *
+     * @param  \Illuminate\Http\Request  $request
+     * @param  \Closure  $next
      * @return mixed
      */
     public function handle($request, Closure $next)
diff --git a/app/Http/Middleware/PasswordExpires.php b/app/Http/Middleware/PasswordExpires.php
index 63cb48f8..dad93040 100755
--- a/app/Http/Middleware/PasswordExpires.php
+++ b/app/Http/Middleware/PasswordExpires.php
@@ -11,11 +11,11 @@
 class PasswordExpires
 {
     /**
-     * @param         $request
-     * @param Closure $next
+     * @param  $request
+     * @param  Closure  $next
+     * @return \Illuminate\Http\RedirectResponse|mixed
      *
      * @throws \Exception
-     * @return \Illuminate\Http\RedirectResponse|mixed
      */
     public function handle($request, Closure $next)
     {
diff --git a/app/Http/Middleware/SecureHeaders.php b/app/Http/Middleware/SecureHeaders.php
index dbd320a2..7db7d0fc 100755
--- a/app/Http/Middleware/SecureHeaders.php
+++ b/app/Http/Middleware/SecureHeaders.php
@@ -28,7 +28,6 @@ class SecureHeaders
     /**
      * @param $request
      * @param  Closure  $next
-     *
      * @return mixed
      */
     public function handle($request, Closure $next)
diff --git a/app/Http/Middleware/ToBeLoggedOut.php b/app/Http/Middleware/ToBeLoggedOut.php
index faeaed68..ea708203 100755
--- a/app/Http/Middleware/ToBeLoggedOut.php
+++ b/app/Http/Middleware/ToBeLoggedOut.php
@@ -10,9 +10,8 @@
 class ToBeLoggedOut
 {
     /**
-     * @param         $request
-     * @param Closure $next
-     *
+     * @param  $request
+     * @param  Closure  $next
      * @return \Illuminate\Http\RedirectResponse|mixed
      */
     public function handle($request, Closure $next)
diff --git a/app/Http/Resources/BlogCategoriesResource.php b/app/Http/Resources/BlogCategoriesResource.php
index d536c4c3..050e9c62 100755
--- a/app/Http/Resources/BlogCategoriesResource.php
+++ b/app/Http/Resources/BlogCategoriesResource.php
@@ -10,7 +10,6 @@ class BlogCategoriesResource extends Resource
      * Transform the resource into an array.
      *
      * @param  \Illuminate\Http\Request
-     *
      * @return array
      */
     public function toArray($request)
diff --git a/app/Http/Resources/BlogTagsResource.php b/app/Http/Resources/BlogTagsResource.php
index 6b6243aa..401575c5 100755
--- a/app/Http/Resources/BlogTagsResource.php
+++ b/app/Http/Resources/BlogTagsResource.php
@@ -10,7 +10,6 @@ class BlogTagsResource extends Resource
      * Transform the resource into an array.
      *
      * @param  \Illuminate\Http\Request
-     *
      * @return array
      */
     public function toArray($request)
diff --git a/app/Http/Resources/BlogsResource.php b/app/Http/Resources/BlogsResource.php
index ae5bbbc2..7dd5fe02 100755
--- a/app/Http/Resources/BlogsResource.php
+++ b/app/Http/Resources/BlogsResource.php
@@ -10,7 +10,6 @@ class BlogsResource extends Resource
      * Transform the resource into an array.
      *
      * @param  \Illuminate\Http\Request
-     *
      * @return array
      */
     public function toArray($request)
diff --git a/app/Http/Resources/FaqsResource.php b/app/Http/Resources/FaqsResource.php
index aff89466..cf184436 100755
--- a/app/Http/Resources/FaqsResource.php
+++ b/app/Http/Resources/FaqsResource.php
@@ -10,7 +10,6 @@ class FaqsResource extends Resource
      * Transform the resource into an array.
      *
      * @param  \Illuminate\Http\Request
-     *
      * @return array
      */
     public function toArray($request)
diff --git a/app/Http/Resources/PagesResource.php b/app/Http/Resources/PagesResource.php
index 129ea883..12dafea9 100755
--- a/app/Http/Resources/PagesResource.php
+++ b/app/Http/Resources/PagesResource.php
@@ -10,7 +10,6 @@ class PagesResource extends Resource
      * Transform the resource into an array.
      *
      * @param  \Illuminate\Http\Request
-     *
      * @return array
      */
     public function toArray($request)
diff --git a/app/Http/Resources/UserResource.php b/app/Http/Resources/UserResource.php
index 1fc6d005..827b549d 100755
--- a/app/Http/Resources/UserResource.php
+++ b/app/Http/Resources/UserResource.php
@@ -10,7 +10,6 @@ class UserResource extends Resource
      * Transform the resource into an array.
      *
      * @param  \Illuminate\Http\Request
-     *
      * @return array
      */
     public function toArray($request)
diff --git a/app/Http/Responses/Backend/Auth/Permission/CreateResponse.php b/app/Http/Responses/Backend/Auth/Permission/CreateResponse.php
index c0e9a015..7f375b49 100755
--- a/app/Http/Responses/Backend/Auth/Permission/CreateResponse.php
+++ b/app/Http/Responses/Backend/Auth/Permission/CreateResponse.php
@@ -12,7 +12,7 @@ class CreateResponse implements Responsable
     protected $permissions;
 
     /**
-     * @param \App\Repositories\Backend\Auth\Permission\PermissionRepository $permissions
+     * @param  \App\Repositories\Backend\Auth\Permission\PermissionRepository  $permissions
      */
     public function __construct($permissions)
     {
@@ -22,8 +22,7 @@ public function __construct($permissions)
     /**
      * In Response.
      *
-     * @param \App\Http\Requests\Request $request
-     *
+     * @param  \App\Http\Requests\Request  $request
      * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
      */
     public function toResponse($request)
diff --git a/app/Http/Responses/Backend/Auth/Permission/EditResponse.php b/app/Http/Responses/Backend/Auth/Permission/EditResponse.php
index 32048465..83905cf6 100755
--- a/app/Http/Responses/Backend/Auth/Permission/EditResponse.php
+++ b/app/Http/Responses/Backend/Auth/Permission/EditResponse.php
@@ -12,7 +12,7 @@ class EditResponse implements Responsable
     protected $permission;
 
     /**
-     * @param \App\Models\Auth\Permission\Permission $permission
+     * @param  \App\Models\Auth\Permission\Permission  $permission
      */
     public function __construct($permission)
     {
@@ -22,8 +22,7 @@ public function __construct($permission)
     /**
      * toReponse.
      *
-     * @param \Illuminate\Http\Request $request
-     *
+     * @param  \Illuminate\Http\Request  $request
      * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
      */
     public function toResponse($request)
diff --git a/app/Http/Responses/Backend/Auth/Role/CreateResponse.php b/app/Http/Responses/Backend/Auth/Role/CreateResponse.php
index 0f73f276..d6e634e1 100755
--- a/app/Http/Responses/Backend/Auth/Role/CreateResponse.php
+++ b/app/Http/Responses/Backend/Auth/Role/CreateResponse.php
@@ -17,8 +17,8 @@ class CreateResponse implements Responsable
     protected $permissionRepository;
 
     /**
-     * @param \App\Repositories\Backend\Auth\Permission\PermissionRepository $permissions
-     * @param \App\Repositories\Backend\Auth\Role\RoleRepository $roles
+     * @param  \App\Repositories\Backend\Auth\Permission\PermissionRepository  $permissions
+     * @param  \App\Repositories\Backend\Auth\Role\RoleRepository  $roles
      */
     public function __construct($permissions, $roles)
     {
@@ -29,8 +29,7 @@ public function __construct($permissions, $roles)
     /**
      * In Response.
      *
-     * @param \App\Http\Requests\Request $request
-     *
+     * @param  \App\Http\Requests\Request  $request
      * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
      */
     public function toResponse($request)
diff --git a/app/Http/Responses/Backend/Auth/Role/EditResponse.php b/app/Http/Responses/Backend/Auth/Role/EditResponse.php
index c67a7d28..cd3605cf 100755
--- a/app/Http/Responses/Backend/Auth/Role/EditResponse.php
+++ b/app/Http/Responses/Backend/Auth/Role/EditResponse.php
@@ -17,8 +17,8 @@ class EditResponse implements Responsable
     protected $permissionRepository;
 
     /**
-     * @param \App\Models\Auth\Role $role
-     * @param \App\Repositories\Backend\Auth\Permission\PermissionRepository $permissionRepository
+     * @param  \App\Models\Auth\Role  $role
+     * @param  \App\Repositories\Backend\Auth\Permission\PermissionRepository  $permissionRepository
      */
     public function __construct($role, $permissionRepository)
     {
@@ -29,8 +29,7 @@ public function __construct($role, $permissionRepository)
     /**
      * toReponse.
      *
-     * @param \Illuminate\Http\Request $request
-     *
+     * @param  \Illuminate\Http\Request  $request
      * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
      */
     public function toResponse($request)
diff --git a/app/Http/Responses/Backend/BlogCategory/EditResponse.php b/app/Http/Responses/Backend/BlogCategory/EditResponse.php
index b717a73a..6b1300e4 100755
--- a/app/Http/Responses/Backend/BlogCategory/EditResponse.php
+++ b/app/Http/Responses/Backend/BlogCategory/EditResponse.php
@@ -12,7 +12,7 @@ class EditResponse implements Responsable
     protected $blogCategory;
 
     /**
-     * @param \App\Models\BlogCategories\BlogCategory $blogCategory
+     * @param  \App\Models\BlogCategories\BlogCategory  $blogCategory
      */
     public function __construct($blogCategory)
     {
@@ -22,8 +22,7 @@ public function __construct($blogCategory)
     /**
      * toReponse.
      *
-     * @param \Illuminate\Http\Request $request
-     *
+     * @param  \Illuminate\Http\Request  $request
      * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
      */
     public function toResponse($request)
diff --git a/app/Http/Responses/Backend/BlogTag/EditResponse.php b/app/Http/Responses/Backend/BlogTag/EditResponse.php
index e0ecae40..d28d0b96 100755
--- a/app/Http/Responses/Backend/BlogTag/EditResponse.php
+++ b/app/Http/Responses/Backend/BlogTag/EditResponse.php
@@ -12,7 +12,7 @@ class EditResponse implements Responsable
     protected $blogTag;
 
     /**
-     * @param \App\Models\BlogTags\BlogTag $blogTag
+     * @param  \App\Models\BlogTags\BlogTag  $blogTag
      */
     public function __construct($blogTag)
     {
@@ -22,8 +22,7 @@ public function __construct($blogTag)
     /**
      * toReponse.
      *
-     * @param \Illuminate\Http\Request $request
-     *
+     * @param  \Illuminate\Http\Request  $request
      * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
      */
     public function toResponse($request)
diff --git a/app/Http/Responses/Backend/Page/EditResponse.php b/app/Http/Responses/Backend/Page/EditResponse.php
index e893fadb..bf70dfeb 100755
--- a/app/Http/Responses/Backend/Page/EditResponse.php
+++ b/app/Http/Responses/Backend/Page/EditResponse.php
@@ -12,7 +12,7 @@ class EditResponse implements Responsable
     protected $page;
 
     /**
-     * @param \App\Models\Page\Page $page
+     * @param  \App\Models\Page\Page  $page
      */
     public function __construct($page)
     {
@@ -22,8 +22,7 @@ public function __construct($page)
     /**
      * toReponse.
      *
-     * @param \Illuminate\Http\Request $request
-     *
+     * @param  \Illuminate\Http\Request  $request
      * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
      */
     public function toResponse($request)
diff --git a/app/Http/Responses/ViewResponse.php b/app/Http/Responses/ViewResponse.php
index 53f52fb1..79940565 100755
--- a/app/Http/Responses/ViewResponse.php
+++ b/app/Http/Responses/ViewResponse.php
@@ -17,8 +17,8 @@ class ViewResponse implements Responsable
     protected $with;
 
     /**
-     * @param string $view
-     * @param array  $with
+     * @param  string  $view
+     * @param  array  $with
      */
     public function __construct($view, $with = [])
     {
@@ -29,8 +29,7 @@ public function __construct($view, $with = [])
     /**
      * In Response.
      *
-     * @param \Illuminate\Http\Request $request
-     *
+     * @param  \Illuminate\Http\Request  $request
      * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
      */
     public function toResponse($request)
diff --git a/app/Listeners/Backend/Auth/Permission/PermissionEventListener.php b/app/Listeners/Backend/Auth/Permission/PermissionEventListener.php
index 9714c832..97646b08 100755
--- a/app/Listeners/Backend/Auth/Permission/PermissionEventListener.php
+++ b/app/Listeners/Backend/Auth/Permission/PermissionEventListener.php
@@ -54,7 +54,7 @@ public function onDeleted($event)
     /**
      * Register the listeners for the subscriber.
      *
-     * @param \Illuminate\Events\Dispatcher $events
+     * @param  \Illuminate\Events\Dispatcher  $events
      */
     public function subscribe($events)
     {
diff --git a/app/Listeners/Backend/Auth/Role/RoleEventListener.php b/app/Listeners/Backend/Auth/Role/RoleEventListener.php
index e0b838dd..a55a8e4b 100755
--- a/app/Listeners/Backend/Auth/Role/RoleEventListener.php
+++ b/app/Listeners/Backend/Auth/Role/RoleEventListener.php
@@ -38,7 +38,7 @@ public function onDeleted($event)
     /**
      * Register the listeners for the subscriber.
      *
-     * @param \Illuminate\Events\Dispatcher $events
+     * @param  \Illuminate\Events\Dispatcher  $events
      */
     public function subscribe($events)
     {
diff --git a/app/Listeners/Backend/Auth/User/UserEventListener.php b/app/Listeners/Backend/Auth/User/UserEventListener.php
index 8a053626..56109bfe 100755
--- a/app/Listeners/Backend/Auth/User/UserEventListener.php
+++ b/app/Listeners/Backend/Auth/User/UserEventListener.php
@@ -110,7 +110,7 @@ public function onRestored($event)
     /**
      * Register the listeners for the subscriber.
      *
-     * @param \Illuminate\Events\Dispatcher $events
+     * @param  \Illuminate\Events\Dispatcher  $events
      */
     public function subscribe($events)
     {
diff --git a/app/Listeners/Backend/BlogCategories/BlogCategoryEventListener.php b/app/Listeners/Backend/BlogCategories/BlogCategoryEventListener.php
index 3e35487b..d56cce7e 100755
--- a/app/Listeners/Backend/BlogCategories/BlogCategoryEventListener.php
+++ b/app/Listeners/Backend/BlogCategories/BlogCategoryEventListener.php
@@ -54,7 +54,7 @@ public function onDeleted($event)
     /**
      * Register the listeners for the subscriber.
      *
-     * @param \Illuminate\Events\Dispatcher $events
+     * @param  \Illuminate\Events\Dispatcher  $events
      */
     public function subscribe($events)
     {
diff --git a/app/Listeners/Backend/BlogTags/BlogTagEventListener.php b/app/Listeners/Backend/BlogTags/BlogTagEventListener.php
index 7061bbb3..261647a4 100755
--- a/app/Listeners/Backend/BlogTags/BlogTagEventListener.php
+++ b/app/Listeners/Backend/BlogTags/BlogTagEventListener.php
@@ -54,7 +54,7 @@ public function onDeleted($event)
     /**
      * Register the listeners for the subscriber.
      *
-     * @param \Illuminate\Events\Dispatcher $events
+     * @param  \Illuminate\Events\Dispatcher  $events
      */
     public function subscribe($events)
     {
diff --git a/app/Listeners/Backend/Blogs/BlogEventListener.php b/app/Listeners/Backend/Blogs/BlogEventListener.php
index 2cff5b39..2a6cf829 100755
--- a/app/Listeners/Backend/Blogs/BlogEventListener.php
+++ b/app/Listeners/Backend/Blogs/BlogEventListener.php
@@ -54,7 +54,7 @@ public function onDeleted($event)
     /**
      * Register the listeners for the subscriber.
      *
-     * @param \Illuminate\Events\Dispatcher $events
+     * @param  \Illuminate\Events\Dispatcher  $events
      */
     public function subscribe($events)
     {
diff --git a/app/Listeners/Backend/EmailTemplates/EmailTemplateEventListener.php b/app/Listeners/Backend/EmailTemplates/EmailTemplateEventListener.php
index 94e1033f..327e335b 100755
--- a/app/Listeners/Backend/EmailTemplates/EmailTemplateEventListener.php
+++ b/app/Listeners/Backend/EmailTemplates/EmailTemplateEventListener.php
@@ -54,7 +54,7 @@ public function onDeleted($event)
     /**
      * Register the listeners for the subscriber.
      *
-     * @param \Illuminate\Events\Dispatcher $events
+     * @param  \Illuminate\Events\Dispatcher  $events
      */
     public function subscribe($events)
     {
diff --git a/app/Listeners/Backend/Faqs/FaqEventListener.php b/app/Listeners/Backend/Faqs/FaqEventListener.php
index fd4185ee..0be0d0ac 100755
--- a/app/Listeners/Backend/Faqs/FaqEventListener.php
+++ b/app/Listeners/Backend/Faqs/FaqEventListener.php
@@ -54,7 +54,7 @@ public function onDeleted($event)
     /**
      * Register the listeners for the subscriber.
      *
-     * @param \Illuminate\Events\Dispatcher $events
+     * @param  \Illuminate\Events\Dispatcher  $events
      */
     public function subscribe($events)
     {
diff --git a/app/Listeners/Backend/Pages/PageEventListener.php b/app/Listeners/Backend/Pages/PageEventListener.php
index 344b2bbc..036a3660 100755
--- a/app/Listeners/Backend/Pages/PageEventListener.php
+++ b/app/Listeners/Backend/Pages/PageEventListener.php
@@ -54,7 +54,7 @@ public function onDeleted($event)
     /**
      * Register the listeners for the subscriber.
      *
-     * @param \Illuminate\Events\Dispatcher $events
+     * @param  \Illuminate\Events\Dispatcher  $events
      */
     public function subscribe($events)
     {
diff --git a/app/Listeners/Frontend/Auth/UserEventListener.php b/app/Listeners/Frontend/Auth/UserEventListener.php
index 31e9239b..a9779e85 100755
--- a/app/Listeners/Frontend/Auth/UserEventListener.php
+++ b/app/Listeners/Frontend/Auth/UserEventListener.php
@@ -76,7 +76,7 @@ public function onConfirmed($event)
     /**
      * Register the listeners for the subscriber.
      *
-     * @param \Illuminate\Events\Dispatcher $events
+     * @param  \Illuminate\Events\Dispatcher  $events
      */
     public function subscribe($events)
     {
diff --git a/app/Mail/Frontend/Contact/SendContact.php b/app/Mail/Frontend/Contact/SendContact.php
index d56e5c08..6acb153a 100755
--- a/app/Mail/Frontend/Contact/SendContact.php
+++ b/app/Mail/Frontend/Contact/SendContact.php
@@ -22,7 +22,7 @@ class SendContact extends Mailable
     /**
      * SendContact constructor.
      *
-     * @param Request $request
+     * @param  Request  $request
      */
     public function __construct(Request $request)
     {
diff --git a/app/Models/Auth/BaseUser.php b/app/Models/Auth/BaseUser.php
index ab29dc3f..3273f823 100755
--- a/app/Models/Auth/BaseUser.php
+++ b/app/Models/Auth/BaseUser.php
@@ -47,6 +47,7 @@ abstract class BaseUser extends Authenticatable implements Recordable
 
     /**
      * The dynamic attributes from mutators that should be returned with the user object.
+     *
      * @var array
      */
     protected $appends = [
@@ -87,7 +88,7 @@ abstract class BaseUser extends Authenticatable implements Recordable
      * Return true or false if the user can impersonate an other user.
      *
      * @param void
-     * @return  bool
+     * @return bool
      */
     public function canImpersonate()
     {
@@ -98,7 +99,7 @@ public function canImpersonate()
      * Return true or false if the user can be impersonate.
      *
      * @param void
-     * @return  bool
+     * @return bool
      */
     public function canBeImpersonated()
     {
diff --git a/app/Models/Auth/Traits/Access/RoleAccess.php b/app/Models/Auth/Traits/Access/RoleAccess.php
index 18b5d02c..fea839e0 100755
--- a/app/Models/Auth/Traits/Access/RoleAccess.php
+++ b/app/Models/Auth/Traits/Access/RoleAccess.php
@@ -7,7 +7,7 @@ trait RoleAccess
     /**
      * Save the inputted permissions.
      *
-     * @param mixed $inputPermissions
+     * @param  mixed  $inputPermissions
      */
     public function savePermissions($inputPermissions)
     {
@@ -21,7 +21,7 @@ public function savePermissions($inputPermissions)
     /**
      * Attach permission to current role.
      *
-     * @param object|array $permission
+     * @param  object|array  $permission
      */
     public function attachPermission($permission)
     {
@@ -39,7 +39,7 @@ public function attachPermission($permission)
     /**
      * Detach permission form current role.
      *
-     * @param object|array $permission
+     * @param  object|array  $permission
      */
     public function detachPermission($permission)
     {
@@ -57,7 +57,7 @@ public function detachPermission($permission)
     /**
      * Attach multiple permissions to current role.
      *
-     * @param mixed $permissions
+     * @param  mixed  $permissions
      */
     public function attachPermissions($permissions)
     {
@@ -69,7 +69,7 @@ public function attachPermissions($permissions)
     /**
      * Detach multiple permissions from current role.
      *
-     * @param mixed $permissions
+     * @param  mixed  $permissions
      */
     public function detachPermissions($permissions)
     {
diff --git a/app/Models/Auth/Traits/Access/UserAccess.php b/app/Models/Auth/Traits/Access/UserAccess.php
index 8d4f215e..a9245fef 100755
--- a/app/Models/Auth/Traits/Access/UserAccess.php
+++ b/app/Models/Auth/Traits/Access/UserAccess.php
@@ -7,8 +7,7 @@ trait UserAccess
     /**
      * Checks if the user has a Role by its name or id.
      *
-     * @param string $nameOrId Role name or id.
-     *
+     * @param  string  $nameOrId  Role name or id.
      * @return bool
      */
     public function hasRole($nameOrId)
@@ -42,7 +41,6 @@ public function hasRole($nameOrId)
      *
      * @param  $roles
      * @param  $needsAll
-     *
      * @return bool
      */
     public function hasRoles($roles, $needsAll = false)
@@ -79,8 +77,7 @@ public function hasRoles($roles, $needsAll = false)
     /**
      * Check if user has a permission by its name or id.
      *
-     * @param string $nameOrId Permission name or id.
-     *
+     * @param  string  $nameOrId  Permission name or id.
      * @return bool
      */
     public function allow($nameOrId)
@@ -140,7 +137,6 @@ public function allow($nameOrId)
      *
      * @param  $permissions
      * @param  $needsAll
-     *
      * @return bool
      */
     public function allowMultiple($permissions, $needsAll = false)
@@ -176,7 +172,6 @@ public function allowMultiple($permissions, $needsAll = false)
 
     /**
      * @param  $nameOrId
-     *
      * @return bool
      */
     public function hasPermission($nameOrId)
@@ -186,8 +181,7 @@ public function hasPermission($nameOrId)
 
     /**
      * @param  $permissions
-     * @param bool $needsAll
-     *
+     * @param  bool  $needsAll
      * @return bool
      */
     public function hasPermissions($permissions, $needsAll = false)
@@ -198,7 +192,7 @@ public function hasPermissions($permissions, $needsAll = false)
     /**
      * Alias to eloquent many-to-many relation's attach() method.
      *
-     * @param mixed $role
+     * @param  mixed  $role
      */
     public function attachRole($role)
     {
@@ -216,7 +210,7 @@ public function attachRole($role)
     /**
      * Alias to eloquent many-to-many relation's detach() method.
      *
-     * @param mixed $role
+     * @param  mixed  $role
      */
     public function detachRole($role)
     {
@@ -234,7 +228,7 @@ public function detachRole($role)
     /**
      * Attach multiple roles to a user.
      *
-     * @param mixed $roles
+     * @param  mixed  $roles
      */
     public function attachRoles($roles)
     {
@@ -246,7 +240,7 @@ public function attachRoles($roles)
     /**
      * Detach multiple roles from a user.
      *
-     * @param mixed $roles
+     * @param  mixed  $roles
      */
     public function detachRoles($roles)
     {
@@ -258,7 +252,7 @@ public function detachRoles($roles)
     /**
      * Attach multiple Permissions to a user.
      *
-     * @param mixed $permissions
+     * @param  mixed  $permissions
      */
     public function attachPermissions($permissions)
     {
@@ -270,7 +264,7 @@ public function attachPermissions($permissions)
     /**
      * Alias to eloquent many-to-many relation's attach() method.
      *
-     * @param mixed $permission
+     * @param  mixed  $permission
      */
     public function attachPermission($permission)
     {
@@ -288,7 +282,7 @@ public function attachPermission($permission)
     /**
      * Detach multiple permissions from current role.
      *
-     * @param mixed $permissions
+     * @param  mixed  $permissions
      */
     public function detachPermissions($permissions)
     {
@@ -300,7 +294,7 @@ public function detachPermissions($permissions)
     /**
      * Detach permission form current User.
      *
-     * @param object|array $permission
+     * @param  object|array  $permission
      */
     public function detachPermission($permission)
     {
diff --git a/app/Models/Auth/Traits/Methods/UserMethods.php b/app/Models/Auth/Traits/Methods/UserMethods.php
index 5889e697..64b3738d 100755
--- a/app/Models/Auth/Traits/Methods/UserMethods.php
+++ b/app/Models/Auth/Traits/Methods/UserMethods.php
@@ -21,10 +21,10 @@ public function canChangePassword()
     }
 
     /**
-     * @param bool $size
+     * @param  bool  $size
+     * @return bool|\Illuminate\Contracts\Routing\UrlGenerator|mixed|string
      *
      * @throws \Illuminate\Container\EntryNotFoundException
-     * @return bool|\Illuminate\Contracts\Routing\UrlGenerator|mixed|string
      */
     public function getPicture($size = false)
     {
@@ -51,7 +51,6 @@ public function getPicture($size = false)
 
     /**
      * @param $provider
-     *
      * @return bool
      */
     public function hasProvider($provider)
diff --git a/app/Models/Auth/Traits/Scopes/RoleScopes.php b/app/Models/Auth/Traits/Scopes/RoleScopes.php
index 2ea91c50..fad5d246 100755
--- a/app/Models/Auth/Traits/Scopes/RoleScopes.php
+++ b/app/Models/Auth/Traits/Scopes/RoleScopes.php
@@ -6,8 +6,7 @@ trait RoleScopes
 {
     /**
      * @param $query
-     * @param string $direction
-     *
+     * @param  string  $direction
      * @return mixed
      */
     public function scopeSort($query, $direction = 'asc')
diff --git a/app/Models/Auth/Traits/Scopes/UserScopes.php b/app/Models/Auth/Traits/Scopes/UserScopes.php
index 19c79519..3c17c672 100755
--- a/app/Models/Auth/Traits/Scopes/UserScopes.php
+++ b/app/Models/Auth/Traits/Scopes/UserScopes.php
@@ -6,8 +6,7 @@ trait UserScopes
 {
     /**
      * @param $query
-     * @param bool $confirmed
-     *
+     * @param  bool  $confirmed
      * @return mixed
      */
     public function scopeConfirmed($query, $confirmed = true)
@@ -17,8 +16,7 @@ public function scopeConfirmed($query, $confirmed = true)
 
     /**
      * @param $query
-     * @param bool $status
-     *
+     * @param  bool  $status
      * @return mixed
      */
     public function scopeActive($query, $status = true)
diff --git a/app/Models/Auth/Traits/SendUserPasswordReset.php b/app/Models/Auth/Traits/SendUserPasswordReset.php
index 8ce21e15..1390f0ae 100755
--- a/app/Models/Auth/Traits/SendUserPasswordReset.php
+++ b/app/Models/Auth/Traits/SendUserPasswordReset.php
@@ -12,7 +12,7 @@ trait SendUserPasswordReset
     /**
      * Send the password reset notification.
      *
-     * @param string $token
+     * @param  string  $token
      */
     public function sendPasswordResetNotification($token)
     {
diff --git a/app/Models/BaseModel.php b/app/Models/BaseModel.php
index 5818437e..c4aef5f4 100755
--- a/app/Models/BaseModel.php
+++ b/app/Models/BaseModel.php
@@ -9,8 +9,7 @@ class BaseModel extends Model
     /**
      * Generate drop-down select data with basic IDs.
      *
-     * @param string $field_name
-     *
+     * @param  string  $field_name
      * @return array
      */
     public static function getSelectData($field_name = 'name')
@@ -24,8 +23,7 @@ public static function getSelectData($field_name = 'name')
      * Generate items for drop-down select data with basic IDs.
      *
      * @param $collection
-     * @param string $field_name
-     *
+     * @param  string  $field_name
      * @return array
      */
     public static function getItems($collection, $field_name)
diff --git a/app/Models/Traits/Uuid.php b/app/Models/Traits/Uuid.php
index 62b44ba9..8c3b5788 100755
--- a/app/Models/Traits/Uuid.php
+++ b/app/Models/Traits/Uuid.php
@@ -12,7 +12,6 @@ trait Uuid
     /**
      * @param $query
      * @param $uuid
-     *
      * @return mixed
      */
     public function scopeUuid($query, $uuid)
diff --git a/app/Notifications/Backend/Auth/UserAccountActive.php b/app/Notifications/Backend/Auth/UserAccountActive.php
index 6d457bbe..14b54a25 100755
--- a/app/Notifications/Backend/Auth/UserAccountActive.php
+++ b/app/Notifications/Backend/Auth/UserAccountActive.php
@@ -16,8 +16,7 @@ class UserAccountActive extends Notification
     /**
      * Get the notification's delivery channels.
      *
-     * @param mixed $notifiable
-     *
+     * @param  mixed  $notifiable
      * @return array
      */
     public function via($notifiable)
@@ -28,8 +27,7 @@ public function via($notifiable)
     /**
      * Get the mail representation of the notification.
      *
-     * @param mixed $notifiable
-     *
+     * @param  mixed  $notifiable
      * @return \Illuminate\Notifications\Messages\MailMessage
      */
     public function toMail($notifiable)
diff --git a/app/Notifications/Frontend/Auth/UserNeedsConfirmation.php b/app/Notifications/Frontend/Auth/UserNeedsConfirmation.php
index 4d27d676..bd57e533 100755
--- a/app/Notifications/Frontend/Auth/UserNeedsConfirmation.php
+++ b/app/Notifications/Frontend/Auth/UserNeedsConfirmation.php
@@ -31,8 +31,7 @@ public function __construct($confirmation_code)
     /**
      * Get the notification's delivery channels.
      *
-     * @param mixed $notifiable
-     *
+     * @param  mixed  $notifiable
      * @return array
      */
     public function via($notifiable)
@@ -43,8 +42,7 @@ public function via($notifiable)
     /**
      * Get the mail representation of the notification.
      *
-     * @param mixed $notifiable
-     *
+     * @param  mixed  $notifiable
      * @return \Illuminate\Notifications\Messages\MailMessage
      */
     public function toMail($notifiable)
diff --git a/app/Notifications/Frontend/Auth/UserNeedsPasswordReset.php b/app/Notifications/Frontend/Auth/UserNeedsPasswordReset.php
index 0eecee4d..9e2786e2 100755
--- a/app/Notifications/Frontend/Auth/UserNeedsPasswordReset.php
+++ b/app/Notifications/Frontend/Auth/UserNeedsPasswordReset.php
@@ -33,8 +33,7 @@ public function __construct($token)
     /**
      * Get the notification's channels.
      *
-     * @param mixed $notifiable
-     *
+     * @param  mixed  $notifiable
      * @return array|string
      */
     public function via($notifiable)
@@ -45,8 +44,7 @@ public function via($notifiable)
     /**
      * Build the mail representation of the notification.
      *
-     * @param mixed $notifiable
-     *
+     * @param  mixed  $notifiable
      * @return \Illuminate\Notifications\Messages\MailMessage
      */
     public function toMail($notifiable)
diff --git a/app/Observers/User/UserObserver.php b/app/Observers/User/UserObserver.php
index c9334087..bfd9ab05 100755
--- a/app/Observers/User/UserObserver.php
+++ b/app/Observers/User/UserObserver.php
@@ -33,7 +33,7 @@ public function updated(User $user): void
     }
 
     /**
-     * @param User $user
+     * @param  User  $user
      */
     private function logPasswordHistory(User $user): void
     {
diff --git a/app/Repositories/Backend/Auth/Permission/PermissionRepository.php b/app/Repositories/Backend/Auth/Permission/PermissionRepository.php
index eb112fbd..1b1dbf68 100755
--- a/app/Repositories/Backend/Auth/Permission/PermissionRepository.php
+++ b/app/Repositories/Backend/Auth/Permission/PermissionRepository.php
@@ -42,11 +42,10 @@ public function getForDataTable()
     }
 
     /**
-     * @param array $input
+     * @param  array  $input
+     * @return bool
      *
      * @throws GeneralException
-     *
-     * @return bool
      */
     public function create(array $input)
     {
@@ -73,12 +72,11 @@ public function create(array $input)
     }
 
     /**
-     * @param Model $permission
+     * @param  Model  $permission
      * @param  $input
+     * @return bool
      *
      * @throws GeneralException
-     *
-     * @return bool
      */
     public function update($permission, array $input)
     {
@@ -104,11 +102,10 @@ public function update($permission, array $input)
     }
 
     /**
-     * @param Model $permission
+     * @param  Model  $permission
+     * @return bool
      *
      * @throws GeneralException
-     *
-     * @return bool
      */
     public function delete($permission)
     {
diff --git a/app/Repositories/Backend/Auth/PermissionRepository.php b/app/Repositories/Backend/Auth/PermissionRepository.php
index f8ba9d60..393dc680 100755
--- a/app/Repositories/Backend/Auth/PermissionRepository.php
+++ b/app/Repositories/Backend/Auth/PermissionRepository.php
@@ -34,11 +34,10 @@ public function getForDataTable()
     }
 
     /**
-     * @param array $input
+     * @param  array  $input
+     * @return bool
      *
      * @throws GeneralException
-     *
-     * @return bool
      */
     public function create(array $input)
     {
@@ -66,12 +65,11 @@ public function create(array $input)
     }
 
     /**
-     * @param Model $permission
+     * @param  Model  $permission
      * @param  $input
+     * @return bool
      *
      * @throws GeneralException
-     *
-     * @return bool
      */
     public function update($permission, array $input)
     {
@@ -97,11 +95,10 @@ public function update($permission, array $input)
     }
 
     /**
-     * @param \App\Models\Auth\Permission $permission
+     * @param  \App\Models\Auth\Permission  $permission
+     * @return bool
      *
      * @throws GeneralException
-     *
-     * @return bool
      */
     public function delete($permission)
     {
diff --git a/app/Repositories/Backend/Auth/RoleRepository.php b/app/Repositories/Backend/Auth/RoleRepository.php
index 82818e50..2049cd14 100755
--- a/app/Repositories/Backend/Auth/RoleRepository.php
+++ b/app/Repositories/Backend/Auth/RoleRepository.php
@@ -40,11 +40,11 @@ public function getForDataTable()
     }
 
     /**
-     * @param array $data
+     * @param  array  $data
+     * @return \App\Models\Auth\Role
      *
      * @throws GeneralException
      * @throws \Throwable
-     * @return \App\Models\Auth\Role
      */
     public function create(array $input)
     {
@@ -99,12 +99,12 @@ public function create(array $input)
     }
 
     /**
-     * @param \App\Models\Auth\Role  $role
-     * @param array $data
+     * @param  \App\Models\Auth\Role  $role
+     * @param  array  $data
+     * @return mixed
      *
      * @throws GeneralException
      * @throws \Throwable
-     * @return mixed
      */
     public function update(Role $role, array $input)
     {
@@ -170,7 +170,6 @@ public function update(Role $role, array $input)
 
     /**
      * @param $name
-     *
      * @return bool
      */
     protected function roleExists($name): bool
@@ -181,11 +180,10 @@ protected function roleExists($name): bool
     }
 
     /**
-     * @param \App\Models\Auth\Role $role
+     * @param  \App\Models\Auth\Role  $role
+     * @return bool
      *
      * @throws GeneralException
-     *
-     * @return bool
      */
     public function delete(Role $role)
     {
diff --git a/app/Repositories/Backend/Auth/SocialRepository.php b/app/Repositories/Backend/Auth/SocialRepository.php
index a0b5d91b..e1cbf945 100755
--- a/app/Repositories/Backend/Auth/SocialRepository.php
+++ b/app/Repositories/Backend/Auth/SocialRepository.php
@@ -15,11 +15,11 @@ class SocialRepository
     const MODEL = SocialAccount::class;
 
     /**
-     * @param \App\Models\Auth\User $user
-     * @param App\Models\Auth\SocialAccount $social
+     * @param  \App\Models\Auth\User  $user
+     * @param  App\Models\Auth\SocialAccount  $social
+     * @return bool
      *
      * @throws GeneralException
-     * @return bool
      */
     public function delete(User $user, SocialAccount $social)
     {
diff --git a/app/Repositories/Backend/Auth/UserRepository.php b/app/Repositories/Backend/Auth/UserRepository.php
index c233b8cf..f79679e7 100755
--- a/app/Repositories/Backend/Auth/UserRepository.php
+++ b/app/Repositories/Backend/Auth/UserRepository.php
@@ -31,9 +31,8 @@ class UserRepository extends BaseRepository
     const MODEL = User::class;
 
     /**
-     * @param int  $status
-     * @param bool $trashed
-     *
+     * @param  int  $status
+     * @param  bool  $trashed
      * @return mixed
      */
     public function getForDataTable($status = 1, $trashed = false)
@@ -64,11 +63,11 @@ public function getForDataTable($status = 1, $trashed = false)
     }
 
     /**
-     * @param array $data
+     * @param  array  $data
+     * @return User
      *
      * @throws \Exception
      * @throws \Throwable
-     * @return User
      */
     public function create(array $data)
     {
@@ -103,13 +102,13 @@ public function create(array $data)
     }
 
     /**
-     * @param \App\Models\Auth\User  $user
-     * @param array $data
+     * @param  \App\Models\Auth\User  $user
+     * @param  array  $data
+     * @return \App\Models\Auth\User
      *
      * @throws GeneralException
      * @throws \Exception
      * @throws \Throwable
-     * @return \App\Models\Auth\User
      */
     public function update(User $user, array $data)
     {
@@ -139,11 +138,10 @@ public function update(User $user, array $data)
     /**
      * Delete User.
      *
-     * @param App\Models\Auth\User $user
+     * @param  App\Models\Auth\User  $user
+     * @return bool
      *
      * @throws GeneralException
-     *
-     * @return bool
      */
     public function delete(User $user)
     {
@@ -161,11 +159,11 @@ public function delete(User $user)
     }
 
     /**
-     * @param \App\Models\Auth\User $user
-     * @param      $input
+     * @param  \App\Models\Auth\User  $user
+     * @param  $input
+     * @return \App\Models\Auth\User
      *
      * @throws GeneralException
-     * @return \App\Models\Auth\User
      */
     public function updatePassword(User $user, $input): User
     {
@@ -179,11 +177,11 @@ public function updatePassword(User $user, $input): User
     }
 
     /**
-     * @param \App\Models\Auth\User $user
-     * @param int $status
+     * @param  \App\Models\Auth\User  $user
+     * @param  int  $status
+     * @return \App\Models\Auth\User
      *
      * @throws GeneralException
-     * @return \App\Models\Auth\User
      */
     public function mark(User $user, $status): User
     {
@@ -210,10 +208,10 @@ public function mark(User $user, $status): User
     }
 
     /**
-     * @param \App\Models\Auth\User $user
+     * @param  \App\Models\Auth\User  $user
+     * @return \App\Models\Auth\User
      *
      * @throws GeneralException
-     * @return \App\Models\Auth\User
      */
     public function confirm(User $user): User
     {
@@ -239,10 +237,10 @@ public function confirm(User $user): User
     }
 
     /**
-     * @param \App\Models\Auth\User $user
+     * @param  \App\Models\Auth\User  $user
+     * @return \App\Models\Auth\User
      *
      * @throws GeneralException
-     * @return \App\Models\Auth\User
      */
     public function unconfirm(User $user): User
     {
@@ -273,12 +271,12 @@ public function unconfirm(User $user): User
     }
 
     /**
-     * @param \App\Models\Auth\User $user
+     * @param  \App\Models\Auth\User  $user
+     * @return \App\Models\Auth\User
      *
      * @throws GeneralException
      * @throws \Exception
      * @throws \Throwable
-     * @return \App\Models\Auth\User
      */
     public function forceDelete(User $user)
     {
@@ -302,10 +300,10 @@ public function forceDelete(User $user)
     }
 
     /**
-     * @param \App\Models\Auth\User $user
+     * @param  \App\Models\Auth\User  $user
+     * @return \App\Models\Auth\User
      *
      * @throws GeneralException
-     * @return \App\Models\Auth\User
      */
     public function restore(User $user): User
     {
@@ -324,7 +322,6 @@ public function restore(User $user): User
 
     /**
      * @param  $input
-     *
      * @return mixed
      */
     protected function createUserStub($input)
@@ -368,10 +365,9 @@ public function getUnconfirmedCount(): int
     }
 
     /**
-     * @param int    $paged
-     * @param string $orderBy
-     * @param string $sort
-     *
+     * @param  int  $paged
+     * @param  string  $orderBy
+     * @param  string  $sort
      * @return mixed
      */
     public function getActivePaginated($paged = 25, $orderBy = 'created_at', $sort = 'desc'): LengthAwarePaginator
@@ -384,10 +380,9 @@ public function getActivePaginated($paged = 25, $orderBy = 'created_at', $sort =
     }
 
     /**
-     * @param int    $paged
-     * @param string $orderBy
-     * @param string $sort
-     *
+     * @param  int  $paged
+     * @param  string  $orderBy
+     * @param  string  $sort
      * @return LengthAwarePaginator
      */
     public function getInactivePaginated($paged = 25, $orderBy = 'created_at', $sort = 'desc'): LengthAwarePaginator
@@ -400,10 +395,9 @@ public function getInactivePaginated($paged = 25, $orderBy = 'created_at', $sort
     }
 
     /**
-     * @param int    $paged
-     * @param string $orderBy
-     * @param string $sort
-     *
+     * @param  int  $paged
+     * @param  string  $orderBy
+     * @param  string  $sort
      * @return LengthAwarePaginator
      */
     public function getDeletedPaginated($paged = 25, $orderBy = 'created_at', $sort = 'desc'): LengthAwarePaginator
diff --git a/app/Repositories/Backend/BlogCategoriesRepository.php b/app/Repositories/Backend/BlogCategoriesRepository.php
index c30cdb97..191305c6 100755
--- a/app/Repositories/Backend/BlogCategoriesRepository.php
+++ b/app/Repositories/Backend/BlogCategoriesRepository.php
@@ -33,6 +33,7 @@ class BlogCategoriesRepository extends BaseRepository
      * Retrieve List.
      *
      * @var array
+     *
      * @return Collection
      */
     public function retrieveList(array $options = [])
@@ -71,11 +72,10 @@ public function getForDataTable()
     }
 
     /**
-     * @param array $input
+     * @param  array  $input
+     * @return bool
      *
      * @throws \App\Exceptions\GeneralException
-     *
-     * @return bool
      */
     public function create(array $input)
     {
@@ -96,7 +96,7 @@ public function create(array $input)
     }
 
     /**
-     * @param \App\Models\BlogCategory $blogcategory
+     * @param  \App\Models\BlogCategory  $blogcategory
      * @param  $input
      *
      * @throws \App\Exceptions\GeneralException
@@ -122,11 +122,10 @@ public function update(BlogCategory $blogcategory, array $input)
     }
 
     /**
-     * @param \App\Models\BlogCategory $blogcategory
+     * @param  \App\Models\BlogCategory  $blogcategory
+     * @return bool
      *
      * @throws \App\Exceptions\GeneralException
-     *
-     * @return bool
      */
     public function delete(BlogCategory $blogcategory)
     {
diff --git a/app/Repositories/Backend/BlogTagsRepository.php b/app/Repositories/Backend/BlogTagsRepository.php
index 4f9966b2..39b377b9 100755
--- a/app/Repositories/Backend/BlogTagsRepository.php
+++ b/app/Repositories/Backend/BlogTagsRepository.php
@@ -33,6 +33,7 @@ class BlogTagsRepository extends BaseRepository
      * Retrieve List.
      *
      * @var array
+     *
      * @return Collection
      */
     public function retrieveList(array $options = [])
@@ -71,11 +72,10 @@ public function getForDataTable()
     }
 
     /**
-     * @param array $input
+     * @param  array  $input
+     * @return bool
      *
      * @throws \App\Exceptions\GeneralException
-     *
-     * @return bool
      */
     public function create(array $input)
     {
@@ -96,7 +96,7 @@ public function create(array $input)
     }
 
     /**
-     * @param \App\Models\BlogTag $blogtag
+     * @param  \App\Models\BlogTag  $blogtag
      * @param  $input
      *
      * @throws \App\Exceptions\GeneralException
@@ -122,11 +122,10 @@ public function update(BlogTag $blogtag, array $input)
     }
 
     /**
-     * @param \App\Models\BlogTag $blogtag
+     * @param  \App\Models\BlogTag  $blogtag
+     * @return bool
      *
      * @throws \App\Exceptions\GeneralException
-     *
-     * @return bool
      */
     public function delete(BlogTag $blogtag)
     {
diff --git a/app/Repositories/Backend/BlogsRepository.php b/app/Repositories/Backend/BlogsRepository.php
index 9d29b002..32d8c1c9 100755
--- a/app/Repositories/Backend/BlogsRepository.php
+++ b/app/Repositories/Backend/BlogsRepository.php
@@ -60,6 +60,7 @@ public function __construct()
      * Retrieve List.
      *
      * @var array
+     *
      * @return Collection
      */
     public function retrieveList(array $options = [])
@@ -100,11 +101,10 @@ public function getForDataTable()
     }
 
     /**
-     * @param array $input
+     * @param  array  $input
+     * @return bool
      *
      * @throws \App\Exceptions\GeneralException
-     *
-     * @return bool
      */
     public function create(array $input)
     {
@@ -141,8 +141,8 @@ public function create(array $input)
     }
 
     /**
-     * @param \App\Models\Blog $blog
-     * @param array $input
+     * @param  \App\Models\Blog  $blog
+     * @param  array  $input
      */
     public function update(Blog $blog, array $input)
     {
@@ -185,8 +185,7 @@ public function update(Blog $blog, array $input)
     /**
      * Creating Tags.
      *
-     * @param array $tags
-     *
+     * @param  array  $tags
      * @return array
      */
     public function createTags($tags)
@@ -218,8 +217,7 @@ public function createTags($tags)
     /**
      * Creating Categories.
      *
-     * @param array $categories
-     *
+     * @param  array  $categories
      * @return array
      */
     public function createCategories($categories)
@@ -250,11 +248,10 @@ public function createCategories($categories)
     }
 
     /**
-     * @param \App\Models\Blogs\Blog $blog
+     * @param  \App\Models\Blogs\Blog  $blog
+     * @return bool
      *
      * @throws GeneralException
-     *
-     * @return bool
      */
     public function delete(Blog $blog)
     {
@@ -275,8 +272,7 @@ public function delete(Blog $blog)
     /**
      * Upload Image.
      *
-     * @param array $input
-     *
+     * @param  array  $input
      * @return array $input
      */
     public function uploadImage($input)
@@ -296,7 +292,7 @@ public function uploadImage($input)
     /**
      * Destroy Old Image.
      *
-     * @param int $id
+     * @param  int  $id
      */
     public function deleteOldFile($model)
     {
diff --git a/app/Repositories/Backend/EmailTemplatesRepository.php b/app/Repositories/Backend/EmailTemplatesRepository.php
index e75a36ee..99e2a79c 100755
--- a/app/Repositories/Backend/EmailTemplatesRepository.php
+++ b/app/Repositories/Backend/EmailTemplatesRepository.php
@@ -18,10 +18,9 @@ class EmailTemplatesRepository extends BaseRepository
     const MODEL = EmailTemplate::class;
 
     /**
-     * @param int    $paged
-     * @param string $orderBy
-     * @param string $sort
-     *
+     * @param  int  $paged
+     * @param  string  $orderBy
+     * @param  string  $sort
      * @return mixed
      */
     public function getActivePaginated($paged = 25, $orderBy = 'created_at', $sort = 'desc')
@@ -57,11 +56,10 @@ public function getForDataTable()
     }
 
     /**
-     * @param array $input
+     * @param  array  $input
+     * @return bool
      *
      * @throws \App\Exceptions\GeneralException
-     *
-     * @return bool
      */
     public function create(array $input)
     {
@@ -79,8 +77,8 @@ public function create(array $input)
     }
 
     /**
-     * @param \App\Models\EmailTemplate $emailTemplate
-     * @param array $input
+     * @param  \App\Models\EmailTemplate  $emailTemplate
+     * @param  array  $input
      */
     public function update(EmailTemplate $emailTemplate, array $input)
     {
@@ -97,11 +95,10 @@ public function update(EmailTemplate $emailTemplate, array $input)
     }
 
     /**
-     * @param \App\Models\EmailTemplate $emailTemplate
+     * @param  \App\Models\EmailTemplate  $emailTemplate
+     * @return bool
      *
      * @throws GeneralException
-     *
-     * @return bool
      */
     public function delete(EmailTemplate $emailTemplate)
     {
diff --git a/app/Repositories/Backend/FaqsRepository.php b/app/Repositories/Backend/FaqsRepository.php
index cb6a263f..bd63f14f 100755
--- a/app/Repositories/Backend/FaqsRepository.php
+++ b/app/Repositories/Backend/FaqsRepository.php
@@ -34,6 +34,7 @@ class FaqsRepository extends BaseRepository
      * Retrieve List.
      *
      * @var array
+     *
      * @return Collection
      */
     public function retrieveList(array $options = [])
@@ -67,11 +68,10 @@ public function getForDataTable()
     }
 
     /**
-     * @param array $input
+     * @param  array  $input
+     * @return bool
      *
      * @throws \App\Exceptions\GeneralException
-     *
-     * @return bool
      */
     public function create(array $input)
     {
@@ -88,8 +88,8 @@ public function create(array $input)
     }
 
     /**
-     * @param \App\Models\Faq $faq
-     * @param array $input
+     * @param  \App\Models\Faq  $faq
+     * @param  array  $input
      */
     public function update(Faq $faq, array $input)
     {
@@ -106,11 +106,10 @@ public function update(Faq $faq, array $input)
     }
 
     /**
-     * @param \App\Models\Faq $faq
+     * @param  \App\Models\Faq  $faq
+     * @return bool
      *
      * @throws GeneralException
-     *
-     * @return bool
      */
     public function delete(Faq $faq)
     {
diff --git a/app/Repositories/Backend/PagesRepository.php b/app/Repositories/Backend/PagesRepository.php
index 2c40a81a..868e4b26 100755
--- a/app/Repositories/Backend/PagesRepository.php
+++ b/app/Repositories/Backend/PagesRepository.php
@@ -37,6 +37,7 @@ class PagesRepository extends BaseRepository
      * Retrieve List.
      *
      * @var array
+     *
      * @return Collection
      */
     public function retrieveList(array $options = [])
@@ -75,11 +76,10 @@ public function getForDataTable()
     }
 
     /**
-     * @param array $input
+     * @param  array  $input
+     * @return bool
      *
      * @throws \App\Exceptions\GeneralException
-     *
-     * @return bool
      */
     public function create(array $input)
     {
@@ -103,8 +103,8 @@ public function create(array $input)
     /**
      * Update Page.
      *
-     * @param \App\Models\Page $page
-     * @param array $input
+     * @param  \App\Models\Page  $page
+     * @param  array  $input
      */
     public function update(Page $page, array $input)
     {
@@ -128,11 +128,10 @@ public function update(Page $page, array $input)
     }
 
     /**
-     * @param \App\Models\Page $page
+     * @param  \App\Models\Page  $page
+     * @return bool
      *
      * @throws GeneralException
-     *
-     * @return bool
      */
     public function delete(Page $page)
     {
diff --git a/app/Repositories/BaseRepository.php b/app/Repositories/BaseRepository.php
index cff99827..452cd4fc 100755
--- a/app/Repositories/BaseRepository.php
+++ b/app/Repositories/BaseRepository.php
@@ -16,10 +16,9 @@ public function getAll()
      * Get Paginated.
      *
      * @param $per_page
-     * @param string $active
-     * @param string $order_by
-     * @param string $sort
-     *
+     * @param  string  $active
+     * @param  string  $order_by
+     * @param  string  $sort
      * @return mixed
      */
     public function getPaginated($per_page, $active = '', $order_by = 'id', $sort = 'asc')
@@ -44,7 +43,6 @@ public function getCount()
 
     /**
      * @param $id
-     *
      * @return mixed
      */
     public function find($id)
@@ -55,9 +53,8 @@ public function find($id)
     /**
      * Find Record based on specific column.
      *
-     * @param string $value
-     * @param string $column_name
-     *
+     * @param  string  $value
+     * @param  string  $column_name
      * @return mixed
      */
     public function getByColumn($value, $column_name = 'id')
@@ -76,8 +73,7 @@ public function query()
     /**
      * Generate drop-down select data with basic IDs.
      *
-     * @param string $field_name
-     *
+     * @param  string  $field_name
      * @return array
      */
     public function getSelectData($field_name = 'name')
diff --git a/app/Repositories/Frontend/Auth/UserRepository.php b/app/Repositories/Frontend/Auth/UserRepository.php
index 79b29bcf..1a6a607e 100755
--- a/app/Repositories/Frontend/Auth/UserRepository.php
+++ b/app/Repositories/Frontend/Auth/UserRepository.php
@@ -26,11 +26,11 @@ class UserRepository extends BaseRepository
     const MODEL = User::class;
 
     /**
-     * @param      $input
-     * @param bool $expired
+     * @param  $input
+     * @param  bool  $expired
+     * @return bool
      *
      * @throws GeneralException
-     * @return bool
      */
     public function updatePassword($input, $expired = false)
     {
@@ -49,11 +49,11 @@ public function updatePassword($input, $expired = false)
 
     /**
      * @param \App\Models\Auth\User;
-     * @param array $input
-     * @param bool|UploadedFile  $image
+     * @param  array  $input
+     * @param  bool|UploadedFile  $image
+     * @return array|bool
      *
      * @throws GeneralException
-     * @return array|bool
      */
     public function update(User $user, array $input, $image = false)
     {
@@ -111,11 +111,11 @@ public function update(User $user, array $input, $image = false)
     }
 
     /**
-     * @param array $data
+     * @param  array  $data
+     * @return \Illuminate\Database\Eloquent\Model|mixed
      *
      * @throws \Exception
      * @throws \Throwable
-     * @return \Illuminate\Database\Eloquent\Model|mixed
      */
     public function create(array $data)
     {
@@ -148,7 +148,6 @@ public function create(array $data)
 
     /**
      * @param  $input
-     *
      * @return mixed
      */
     protected function createUserStub($input)
@@ -167,9 +166,9 @@ protected function createUserStub($input)
 
     /**
      * @param $code
+     * @return bool
      *
      * @throws GeneralException
-     * @return bool
      */
     public function confirm($code)
     {
@@ -192,9 +191,9 @@ public function confirm($code)
 
     /**
      * @param $code
+     * @return mixed
      *
      * @throws GeneralException
-     * @return mixed
      */
     public function findByConfirmationCode($code)
     {
@@ -211,7 +210,6 @@ public function findByConfirmationCode($code)
 
     /**
      * @param $token
-     *
      * @return bool|\Illuminate\Database\Eloquent\Model
      */
     public function findByPasswordResetToken($token)
@@ -227,9 +225,9 @@ public function findByPasswordResetToken($token)
 
     /**
      * @param $uuid
+     * @return mixed
      *
      * @throws GeneralException
-     * @return mixed
      */
     public function findByUuid($uuid)
     {
@@ -247,9 +245,9 @@ public function findByUuid($uuid)
     /**
      * @param $data
      * @param $provider
+     * @return mixed
      *
      * @throws GeneralException
-     * @return mixed
      */
     public function findOrCreateProvider($data, $provider)
     {
@@ -317,7 +315,6 @@ public function findOrCreateProvider($data, $provider)
 
     /**
      * @param $fullName
-     *
      * @return array
      */
     protected function getNameParts($fullName)
diff --git a/app/Services/Access.php b/app/Services/Access.php
index 00e8fb8c..275aefd9 100755
--- a/app/Services/Access.php
+++ b/app/Services/Access.php
@@ -44,8 +44,8 @@ public function id()
     }
 
     /**
-     * @param Authenticatable $user
-     * @param bool            $remember
+     * @param  Authenticatable  $user
+     * @param  bool  $remember
      */
     public function login(Authenticatable $user, $remember = false)
     {
@@ -54,7 +54,6 @@ public function login(Authenticatable $user, $remember = false)
 
     /**
      * @param $id
-     *
      * @return mixed
      */
     public function loginUsingId($id)
@@ -65,8 +64,7 @@ public function loginUsingId($id)
     /**
      * Checks if the current user has a Role by its name or id.
      *
-     * @param string $role Role name.
-     *
+     * @param  string  $role  Role name.
      * @return bool
      */
     public function hasRole($role)
@@ -82,8 +80,7 @@ public function hasRole($role)
      * Checks if the user has either one or more, or all of an array of roles.
      *
      * @param  $roles
-     * @param bool $needsAll
-     *
+     * @param  bool  $needsAll
      * @return bool
      */
     public function hasRoles($roles, $needsAll = false)
@@ -98,8 +95,7 @@ public function hasRoles($roles, $needsAll = false)
     /**
      * Check if the current user has a permission by its name or id.
      *
-     * @param string $permission Permission name or id.
-     *
+     * @param  string  $permission  Permission name or id.
      * @return bool
      */
     public function allow($permission)
@@ -116,7 +112,6 @@ public function allow($permission)
      *
      * @param  $permissions
      * @param  $needsAll
-     *
      * @return bool
      */
     public function allowMultiple($permissions, $needsAll = false)
@@ -130,7 +125,6 @@ public function allowMultiple($permissions, $needsAll = false)
 
     /**
      * @param  $permission
-     *
      * @return bool
      */
     public function hasPermission($permission)
@@ -141,7 +135,6 @@ public function hasPermission($permission)
     /**
      * @param  $permissions
      * @param  $needsAll
-     *
      * @return bool
      */
     public function hasPermissions($permissions, $needsAll = false)
diff --git a/composer.lock b/composer.lock
old mode 100755
new mode 100644
index b9aba809..6b3d80dc
--- a/composer.lock
+++ b/composer.lock
@@ -1,10 +1,10 @@
 {
     "_readme": [
         "This file locks the dependencies of your project to a known state",
-        "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
+        "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
         "This file is @generated automatically"
     ],
-    "content-hash": "28b5f24c3d2f9c089228950f6ea0432e",
+    "content-hash": "791a07b4ac8a7f75fb53f566fd3f7a00",
     "packages": [
         {
             "name": "albertcht/invisible-recaptcha",
@@ -820,6 +820,24 @@
                 "uppercase",
                 "words"
             ],
+            "support": {
+                "issues": "https://github.com/doctrine/inflector/issues",
+                "source": "https://github.com/doctrine/inflector/tree/2.0.x"
+            },
+            "funding": [
+                {
+                    "url": "https://www.doctrine-project.org/sponsorship.html",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://www.patreon.com/phpdoctrine",
+                    "type": "patreon"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
+                    "type": "tidelift"
+                }
+            ],
             "time": "2020-05-29T15:13:26+00:00"
         },
         {
@@ -882,27 +900,45 @@
                 "parser",
                 "php"
             ],
+            "support": {
+                "issues": "https://github.com/doctrine/lexer/issues",
+                "source": "https://github.com/doctrine/lexer/tree/1.2.1"
+            },
+            "funding": [
+                {
+                    "url": "https://www.doctrine-project.org/sponsorship.html",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://www.patreon.com/phpdoctrine",
+                    "type": "patreon"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
+                    "type": "tidelift"
+                }
+            ],
             "time": "2020-05-25T17:44:05+00:00"
         },
         {
             "name": "dragonmantank/cron-expression",
-            "version": "v2.3.0",
+            "version": "v2.3.1",
             "source": {
                 "type": "git",
                 "url": "https://github.com/dragonmantank/cron-expression.git",
-                "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27"
+                "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/72b6fbf76adb3cf5bc0db68559b33d41219aba27",
-                "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27",
+                "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
+                "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
                 "shasum": ""
             },
             "require": {
-                "php": "^7.0"
+                "php": "^7.0|^8.0"
             },
             "require-dev": {
-                "phpunit/phpunit": "^6.4|^7.0"
+                "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
             },
             "type": "library",
             "extra": {
@@ -936,20 +972,30 @@
                 "cron",
                 "schedule"
             ],
-            "time": "2019-03-31T00:38:28+00:00"
+            "support": {
+                "issues": "https://github.com/dragonmantank/cron-expression/issues",
+                "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/dragonmantank",
+                    "type": "github"
+                }
+            ],
+            "time": "2020-10-13T00:52:37+00:00"
         },
         {
             "name": "egulias/email-validator",
-            "version": "2.1.18",
+            "version": "2.1.25",
             "source": {
                 "type": "git",
                 "url": "https://github.com/egulias/EmailValidator.git",
-                "reference": "cfa3d44471c7f5bfb684ac2b0da7114283d78441"
+                "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/cfa3d44471c7f5bfb684ac2b0da7114283d78441",
-                "reference": "cfa3d44471c7f5bfb684ac2b0da7114283d78441",
+                "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
+                "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
                 "shasum": ""
             },
             "require": {
@@ -994,7 +1040,17 @@
                 "validation",
                 "validator"
             ],
-            "time": "2020-06-16T20:11:17+00:00"
+            "support": {
+                "issues": "https://github.com/egulias/EmailValidator/issues",
+                "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/egulias",
+                    "type": "github"
+                }
+            ],
+            "time": "2020-12-29T14:50:06+00:00"
         },
         {
             "name": "erusev/parsedown",
@@ -1040,31 +1096,36 @@
                 "markdown",
                 "parser"
             ],
+            "support": {
+                "issues": "https://github.com/erusev/parsedown/issues",
+                "source": "https://github.com/erusev/parsedown/tree/1.7.x"
+            },
             "time": "2019-12-30T22:54:17+00:00"
         },
         {
             "name": "facade/flare-client-php",
-            "version": "1.3.2",
+            "version": "1.9.1",
             "source": {
                 "type": "git",
                 "url": "https://github.com/facade/flare-client-php.git",
-                "reference": "db1e03426e7f9472c9ecd1092aff00f56aa6c004"
+                "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/facade/flare-client-php/zipball/db1e03426e7f9472c9ecd1092aff00f56aa6c004",
-                "reference": "db1e03426e7f9472c9ecd1092aff00f56aa6c004",
+                "url": "https://api.github.com/repos/facade/flare-client-php/zipball/b2adf1512755637d0cef4f7d1b54301325ac78ed",
+                "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed",
                 "shasum": ""
             },
             "require": {
                 "facade/ignition-contracts": "~1.0",
-                "illuminate/pipeline": "^5.5|^6.0|^7.0",
-                "php": "^7.1",
+                "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
+                "php": "^7.1|^8.0",
                 "symfony/http-foundation": "^3.3|^4.1|^5.0",
+                "symfony/mime": "^3.4|^4.0|^5.1",
                 "symfony/var-dumper": "^3.4|^4.0|^5.0"
             },
             "require-dev": {
-                "larapack/dd": "^1.1",
+                "friendsofphp/php-cs-fixer": "^2.14",
                 "phpunit/phpunit": "^7.5.16",
                 "spatie/phpunit-snapshot-assertions": "^2.0"
             },
@@ -1094,20 +1155,30 @@
                 "flare",
                 "reporting"
             ],
-            "time": "2020-03-02T15:52:04+00:00"
+            "support": {
+                "issues": "https://github.com/facade/flare-client-php/issues",
+                "source": "https://github.com/facade/flare-client-php/tree/1.9.1"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/spatie",
+                    "type": "github"
+                }
+            ],
+            "time": "2021-09-13T12:16:46+00:00"
         },
         {
             "name": "facade/ignition",
-            "version": "1.16.1",
+            "version": "1.18.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/facade/ignition.git",
-                "reference": "af05ac5ee8587395d7474ec0681c08776a2cb09d"
+                "reference": "fca0cbe5f900f94773d821b481c16d4ea3503491"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/facade/ignition/zipball/af05ac5ee8587395d7474ec0681c08776a2cb09d",
-                "reference": "af05ac5ee8587395d7474ec0681c08776a2cb09d",
+                "url": "https://api.github.com/repos/facade/ignition/zipball/fca0cbe5f900f94773d821b481c16d4ea3503491",
+                "reference": "fca0cbe5f900f94773d821b481c16d4ea3503491",
                 "shasum": ""
             },
             "require": {
@@ -1118,14 +1189,13 @@
                 "filp/whoops": "^2.4",
                 "illuminate/support": "~5.5.0 || ~5.6.0 || ~5.7.0 || ~5.8.0 || ^6.0",
                 "monolog/monolog": "^1.12 || ^2.0",
-                "php": "^7.1",
+                "php": "^7.1|^8.0",
                 "scrivo/highlight.php": "^9.15",
                 "symfony/console": "^3.4 || ^4.0",
                 "symfony/var-dumper": "^3.4 || ^4.0"
             },
             "require-dev": {
-                "friendsofphp/php-cs-fixer": "^2.14",
-                "mockery/mockery": "^1.2",
+                "mockery/mockery": "~1.3.3|^1.4.2",
                 "orchestra/testbench": "^3.5 || ^3.6 || ^3.7 || ^3.8 || ^4.0"
             },
             "suggest": {
@@ -1165,24 +1235,35 @@
                 "laravel",
                 "page"
             ],
-            "time": "2020-03-05T12:39:07+00:00"
+            "support": {
+                "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
+                "forum": "https://twitter.com/flareappio",
+                "issues": "https://github.com/facade/ignition/issues",
+                "source": "https://github.com/facade/ignition"
+            },
+            "time": "2021-08-02T07:45:03+00:00"
         },
         {
             "name": "facade/ignition-contracts",
-            "version": "1.0.0",
+            "version": "1.0.2",
             "source": {
                 "type": "git",
                 "url": "https://github.com/facade/ignition-contracts.git",
-                "reference": "f445db0fb86f48e205787b2592840dd9c80ded28"
+                "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/f445db0fb86f48e205787b2592840dd9c80ded28",
-                "reference": "f445db0fb86f48e205787b2592840dd9c80ded28",
+                "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
+                "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
                 "shasum": ""
             },
             "require": {
-                "php": "^7.1"
+                "php": "^7.3|^8.0"
+            },
+            "require-dev": {
+                "friendsofphp/php-cs-fixer": "^v2.15.8",
+                "phpunit/phpunit": "^9.3.11",
+                "vimeo/psalm": "^3.17.1"
             },
             "type": "library",
             "autoload": {
@@ -1209,7 +1290,11 @@
                 "flare",
                 "ignition"
             ],
-            "time": "2019-08-30T14:06:08+00:00"
+            "support": {
+                "issues": "https://github.com/facade/ignition-contracts/issues",
+                "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
+            },
+            "time": "2020-10-16T08:27:54+00:00"
         },
         {
             "name": "fideloper/proxy",
@@ -1267,25 +1352,25 @@
         },
         {
             "name": "filp/whoops",
-            "version": "2.7.3",
+            "version": "2.14.4",
             "source": {
                 "type": "git",
                 "url": "https://github.com/filp/whoops.git",
-                "reference": "5d5fe9bb3d656b514d455645b3addc5f7ba7714d"
+                "reference": "f056f1fe935d9ed86e698905a957334029899895"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/filp/whoops/zipball/5d5fe9bb3d656b514d455645b3addc5f7ba7714d",
-                "reference": "5d5fe9bb3d656b514d455645b3addc5f7ba7714d",
+                "url": "https://api.github.com/repos/filp/whoops/zipball/f056f1fe935d9ed86e698905a957334029899895",
+                "reference": "f056f1fe935d9ed86e698905a957334029899895",
                 "shasum": ""
             },
             "require": {
-                "php": "^5.5.9 || ^7.0",
-                "psr/log": "^1.0.1"
+                "php": "^5.5.9 || ^7.0 || ^8.0",
+                "psr/log": "^1.0.1 || ^2.0 || ^3.0"
             },
             "require-dev": {
                 "mockery/mockery": "^0.9 || ^1.0",
-                "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0",
+                "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
                 "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
             },
             "suggest": {
@@ -1295,7 +1380,7 @@
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-master": "2.6-dev"
+                    "dev-master": "2.7-dev"
                 }
             },
             "autoload": {
@@ -1324,7 +1409,17 @@
                 "throwable",
                 "whoops"
             ],
-            "time": "2020-06-14T09:00:00+00:00"
+            "support": {
+                "issues": "https://github.com/filp/whoops/issues",
+                "source": "https://github.com/filp/whoops/tree/2.14.4"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/denis-sokolov",
+                    "type": "github"
+                }
+            ],
+            "time": "2021-10-03T12:00:00+00:00"
         },
         {
             "name": "firebase/php-jwt",
@@ -2096,31 +2191,31 @@
         },
         {
             "name": "laravel/framework",
-            "version": "v6.18.20",
+            "version": "v6.20.35",
             "source": {
                 "type": "git",
                 "url": "https://github.com/laravel/framework.git",
-                "reference": "2862a9857533853bb2851bac39d65e3bfb8ba6cd"
+                "reference": "5e55aa4063b9f7cf3249bfebcc37a6fbad4f159a"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/laravel/framework/zipball/2862a9857533853bb2851bac39d65e3bfb8ba6cd",
-                "reference": "2862a9857533853bb2851bac39d65e3bfb8ba6cd",
+                "url": "https://api.github.com/repos/laravel/framework/zipball/5e55aa4063b9f7cf3249bfebcc37a6fbad4f159a",
+                "reference": "5e55aa4063b9f7cf3249bfebcc37a6fbad4f159a",
                 "shasum": ""
             },
             "require": {
                 "doctrine/inflector": "^1.4|^2.0",
-                "dragonmantank/cron-expression": "^2.0",
+                "dragonmantank/cron-expression": "^2.3.1",
                 "egulias/email-validator": "^2.1.10",
                 "ext-json": "*",
                 "ext-mbstring": "*",
                 "ext-openssl": "*",
                 "league/commonmark": "^1.3",
-                "league/flysystem": "^1.0.34",
+                "league/flysystem": "^1.1",
                 "monolog/monolog": "^1.12|^2.0",
-                "nesbot/carbon": "^2.0",
-                "opis/closure": "^3.1",
-                "php": "^7.2",
+                "nesbot/carbon": "^2.31",
+                "opis/closure": "^3.6",
+                "php": "^7.2.5|^8.0",
                 "psr/container": "^1.0",
                 "psr/simple-cache": "^1.0",
                 "ramsey/uuid": "^3.7",
@@ -2171,21 +2266,21 @@
                 "illuminate/view": "self.version"
             },
             "require-dev": {
-                "aws/aws-sdk-php": "^3.0",
+                "aws/aws-sdk-php": "^3.155",
                 "doctrine/dbal": "^2.6",
-                "filp/whoops": "^2.4",
-                "guzzlehttp/guzzle": "^6.3|^7.0",
+                "filp/whoops": "^2.8",
+                "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
                 "league/flysystem-cached-adapter": "^1.0",
-                "mockery/mockery": "^1.3.1",
+                "mockery/mockery": "~1.3.3|^1.4.2",
                 "moontoast/math": "^1.1",
-                "orchestra/testbench-core": "^4.0",
+                "orchestra/testbench-core": "^4.8",
                 "pda/pheanstalk": "^4.0",
-                "phpunit/phpunit": "^7.5.15|^8.4|^9.0",
+                "phpunit/phpunit": "^7.5.15|^8.4|^9.3.3",
                 "predis/predis": "^1.1.1",
                 "symfony/cache": "^4.3.4"
             },
             "suggest": {
-                "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.0).",
+                "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
                 "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
                 "ext-ftp": "Required to use the Flysystem FTP driver.",
                 "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
@@ -2193,9 +2288,9 @@
                 "ext-pcntl": "Required to use all features of the queue worker.",
                 "ext-posix": "Required to use all features of the queue worker.",
                 "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
-                "filp/whoops": "Required for friendly error pages in development (^2.4).",
-                "fzaninotto/faker": "Required to use the eloquent factory builder (^1.9.1).",
-                "guzzlehttp/guzzle": "Required to use the Mailgun mail driver and the ping methods on schedules (^6.0|^7.0).",
+                "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
+                "filp/whoops": "Required for friendly error pages in development (^2.8).",
+                "guzzlehttp/guzzle": "Required to use the Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
                 "laravel/tinker": "Required to use the tinker console command (^2.0).",
                 "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
                 "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
@@ -2203,6 +2298,7 @@
                 "moontoast/math": "Required to use ordered UUIDs (^1.1).",
                 "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
                 "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
+                "predis/predis": "Required to use the predis connector (^1.1.2).",
                 "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
                 "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
                 "symfony/cache": "Required to PSR-6 cache bridge (^4.3.4).",
@@ -2240,7 +2336,11 @@
                 "framework",
                 "laravel"
             ],
-            "time": "2020-06-16T13:21:33+00:00"
+            "support": {
+                "issues": "https://github.com/laravel/framework/issues",
+                "source": "https://github.com/laravel/framework"
+            },
+            "time": "2021-10-05T14:05:19+00:00"
         },
         {
             "name": "laravel/passport",
@@ -2505,16 +2605,16 @@
         },
         {
             "name": "league/commonmark",
-            "version": "1.5.0",
+            "version": "1.6.6",
             "source": {
                 "type": "git",
                 "url": "https://github.com/thephpleague/commonmark.git",
-                "reference": "fc33ca12575e98e57cdce7d5f38b2ca5335714b3"
+                "reference": "c4228d11e30d7493c6836d20872f9582d8ba6dcf"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/fc33ca12575e98e57cdce7d5f38b2ca5335714b3",
-                "reference": "fc33ca12575e98e57cdce7d5f38b2ca5335714b3",
+                "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/c4228d11e30d7493c6836d20872f9582d8ba6dcf",
+                "reference": "c4228d11e30d7493c6836d20872f9582d8ba6dcf",
                 "shasum": ""
             },
             "require": {
@@ -2526,14 +2626,14 @@
             },
             "require-dev": {
                 "cebe/markdown": "~1.0",
-                "commonmark/commonmark.js": "0.29.1",
+                "commonmark/commonmark.js": "0.29.2",
                 "erusev/parsedown": "~1.0",
                 "ext-json": "*",
                 "github/gfm": "0.29.0",
                 "michelf/php-markdown": "~1.4",
                 "mikehaertl/php-shellcommand": "^1.4",
-                "phpstan/phpstan": "^0.12",
-                "phpunit/phpunit": "^7.5",
+                "phpstan/phpstan": "^0.12.90",
+                "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
                 "scrutinizer/ocular": "^1.5",
                 "symfony/finder": "^4.2"
             },
@@ -2570,7 +2670,39 @@
                 "md",
                 "parser"
             ],
-            "time": "2020-06-21T20:50:13+00:00"
+            "support": {
+                "docs": "https://commonmark.thephpleague.com/",
+                "issues": "https://github.com/thephpleague/commonmark/issues",
+                "rss": "https://github.com/thephpleague/commonmark/releases.atom",
+                "source": "https://github.com/thephpleague/commonmark"
+            },
+            "funding": [
+                {
+                    "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://www.colinodell.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://www.paypal.me/colinpodell/10.00",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/colinodell",
+                    "type": "github"
+                },
+                {
+                    "url": "https://www.patreon.com/colinodell",
+                    "type": "patreon"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-07-17T17:13:23+00:00"
         },
         {
             "name": "league/event",
@@ -2624,31 +2756,31 @@
         },
         {
             "name": "league/flysystem",
-            "version": "1.0.69",
+            "version": "1.1.5",
             "source": {
                 "type": "git",
                 "url": "https://github.com/thephpleague/flysystem.git",
-                "reference": "7106f78428a344bc4f643c233a94e48795f10967"
+                "reference": "18634df356bfd4119fe3d6156bdb990c414c14ea"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/7106f78428a344bc4f643c233a94e48795f10967",
-                "reference": "7106f78428a344bc4f643c233a94e48795f10967",
+                "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/18634df356bfd4119fe3d6156bdb990c414c14ea",
+                "reference": "18634df356bfd4119fe3d6156bdb990c414c14ea",
                 "shasum": ""
             },
             "require": {
                 "ext-fileinfo": "*",
-                "php": ">=5.5.9"
+                "league/mime-type-detection": "^1.3",
+                "php": "^7.2.5 || ^8.0"
             },
             "conflict": {
                 "league/flysystem-sftp": "<1.0.6"
             },
             "require-dev": {
-                "phpspec/phpspec": "^3.4",
-                "phpunit/phpunit": "^5.7.26"
+                "phpspec/prophecy": "^1.11.1",
+                "phpunit/phpunit": "^8.5.8"
             },
             "suggest": {
-                "ext-fileinfo": "Required for MimeType",
                 "ext-ftp": "Allows you to use FTP server storage",
                 "ext-openssl": "Allows you to use FTPS server storage",
                 "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
@@ -2704,7 +2836,73 @@
                 "sftp",
                 "storage"
             ],
-            "time": "2020-05-18T15:13:39+00:00"
+            "support": {
+                "issues": "https://github.com/thephpleague/flysystem/issues",
+                "source": "https://github.com/thephpleague/flysystem/tree/1.1.5"
+            },
+            "funding": [
+                {
+                    "url": "https://offset.earth/frankdejonge",
+                    "type": "other"
+                }
+            ],
+            "time": "2021-08-17T13:49:42+00:00"
+        },
+        {
+            "name": "league/mime-type-detection",
+            "version": "1.8.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/thephpleague/mime-type-detection.git",
+                "reference": "b38b25d7b372e9fddb00335400467b223349fd7e"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/b38b25d7b372e9fddb00335400467b223349fd7e",
+                "reference": "b38b25d7b372e9fddb00335400467b223349fd7e",
+                "shasum": ""
+            },
+            "require": {
+                "ext-fileinfo": "*",
+                "php": "^7.2 || ^8.0"
+            },
+            "require-dev": {
+                "friendsofphp/php-cs-fixer": "^2.18",
+                "phpstan/phpstan": "^0.12.68",
+                "phpunit/phpunit": "^8.5.8 || ^9.3"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "League\\MimeTypeDetection\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Frank de Jonge",
+                    "email": "info@frankdejonge.nl"
+                }
+            ],
+            "description": "Mime-type detection for Flysystem",
+            "support": {
+                "issues": "https://github.com/thephpleague/mime-type-detection/issues",
+                "source": "https://github.com/thephpleague/mime-type-detection/tree/1.8.0"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/frankdejonge",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-09-25T08:23:19+00:00"
         },
         {
             "name": "league/oauth1-client",
@@ -2929,38 +3127,39 @@
         },
         {
             "name": "monolog/monolog",
-            "version": "2.1.0",
+            "version": "2.3.5",
             "source": {
                 "type": "git",
                 "url": "https://github.com/Seldaek/monolog.git",
-                "reference": "38914429aac460e8e4616c8cb486ecb40ec90bb1"
+                "reference": "fd4380d6fc37626e2f799f29d91195040137eba9"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/Seldaek/monolog/zipball/38914429aac460e8e4616c8cb486ecb40ec90bb1",
-                "reference": "38914429aac460e8e4616c8cb486ecb40ec90bb1",
+                "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd4380d6fc37626e2f799f29d91195040137eba9",
+                "reference": "fd4380d6fc37626e2f799f29d91195040137eba9",
                 "shasum": ""
             },
             "require": {
                 "php": ">=7.2",
-                "psr/log": "^1.0.1"
+                "psr/log": "^1.0.1 || ^2.0 || ^3.0"
             },
             "provide": {
-                "psr/log-implementation": "1.0.0"
+                "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
             },
             "require-dev": {
                 "aws/aws-sdk-php": "^2.4.9 || ^3.0",
                 "doctrine/couchdb": "~1.0@dev",
-                "elasticsearch/elasticsearch": "^6.0",
+                "elasticsearch/elasticsearch": "^7",
                 "graylog2/gelf-php": "^1.4.2",
-                "php-amqplib/php-amqplib": "~2.4",
+                "mongodb/mongodb": "^1.8",
+                "php-amqplib/php-amqplib": "~2.4 || ^3",
                 "php-console/php-console": "^3.1.3",
-                "php-parallel-lint/php-parallel-lint": "^1.0",
                 "phpspec/prophecy": "^1.6.1",
+                "phpstan/phpstan": "^0.12.91",
                 "phpunit/phpunit": "^8.5",
                 "predis/predis": "^1.1",
                 "rollbar/rollbar": "^1.3",
-                "ruflin/elastica": ">=0.90 <3.0",
+                "ruflin/elastica": ">=0.90@dev",
                 "swiftmailer/swiftmailer": "^5.3|^6.0"
             },
             "suggest": {
@@ -2968,8 +3167,11 @@
                 "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
                 "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
                 "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
+                "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
                 "ext-mbstring": "Allow to work properly with unicode symbols",
                 "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
+                "ext-openssl": "Required to send log messages using SSL",
+                "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
                 "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
                 "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
                 "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
@@ -2980,7 +3182,7 @@
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-master": "2.x-dev"
+                    "dev-main": "2.x-dev"
                 }
             },
             "autoload": {
@@ -2996,17 +3198,31 @@
                 {
                     "name": "Jordi Boggiano",
                     "email": "j.boggiano@seld.be",
-                    "homepage": "http://seld.be"
+                    "homepage": "https://seld.be"
                 }
             ],
             "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
-            "homepage": "http://github.com/Seldaek/monolog",
+            "homepage": "https://github.com/Seldaek/monolog",
             "keywords": [
                 "log",
                 "logging",
                 "psr-3"
             ],
-            "time": "2020-05-22T08:12:19+00:00"
+            "support": {
+                "issues": "https://github.com/Seldaek/monolog/issues",
+                "source": "https://github.com/Seldaek/monolog/tree/2.3.5"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/Seldaek",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-10-01T21:08:31+00:00"
         },
         {
             "name": "mpociot/reflection-docblock",
@@ -3059,31 +3275,33 @@
         },
         {
             "name": "nesbot/carbon",
-            "version": "2.35.0",
+            "version": "2.53.1",
             "source": {
                 "type": "git",
                 "url": "https://github.com/briannesbitt/Carbon.git",
-                "reference": "4b9bd835261ef23d36397a46a76b496a458305e5"
+                "reference": "f4655858a784988f880c1b8c7feabbf02dfdf045"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4b9bd835261ef23d36397a46a76b496a458305e5",
-                "reference": "4b9bd835261ef23d36397a46a76b496a458305e5",
+                "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/f4655858a784988f880c1b8c7feabbf02dfdf045",
+                "reference": "f4655858a784988f880c1b8c7feabbf02dfdf045",
                 "shasum": ""
             },
             "require": {
                 "ext-json": "*",
                 "php": "^7.1.8 || ^8.0",
                 "symfony/polyfill-mbstring": "^1.0",
+                "symfony/polyfill-php80": "^1.16",
                 "symfony/translation": "^3.4 || ^4.0 || ^5.0"
             },
             "require-dev": {
                 "doctrine/orm": "^2.7",
-                "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
-                "kylekatarnls/multi-tester": "^1.1",
-                "phpmd/phpmd": "^2.8",
-                "phpstan/phpstan": "^0.11",
-                "phpunit/phpunit": "^7.5 || ^8.0",
+                "friendsofphp/php-cs-fixer": "^3.0",
+                "kylekatarnls/multi-tester": "^2.0",
+                "phpmd/phpmd": "^2.9",
+                "phpstan/extension-installer": "^1.0",
+                "phpstan/phpstan": "^0.12.54",
+                "phpunit/phpunit": "^7.5.20 || ^8.5.14",
                 "squizlabs/php_codesniffer": "^3.4"
             },
             "bin": [
@@ -3092,13 +3310,18 @@
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-master": "2.x-dev",
-                    "dev-3.x": "3.x-dev"
+                    "dev-3.x": "3.x-dev",
+                    "dev-master": "2.x-dev"
                 },
                 "laravel": {
                     "providers": [
                         "Carbon\\Laravel\\ServiceProvider"
                     ]
+                },
+                "phpstan": {
+                    "includes": [
+                        "extension.neon"
+                    ]
                 }
             },
             "autoload": {
@@ -3114,21 +3337,35 @@
                 {
                     "name": "Brian Nesbitt",
                     "email": "brian@nesbot.com",
-                    "homepage": "http://nesbot.com"
+                    "homepage": "https://markido.com"
                 },
                 {
                     "name": "kylekatarnls",
-                    "homepage": "http://github.com/kylekatarnls"
+                    "homepage": "https://github.com/kylekatarnls"
                 }
             ],
             "description": "An API extension for DateTime that supports 281 different languages.",
-            "homepage": "http://carbon.nesbot.com",
+            "homepage": "https://carbon.nesbot.com",
             "keywords": [
                 "date",
                 "datetime",
                 "time"
             ],
-            "time": "2020-05-24T18:27:52+00:00"
+            "support": {
+                "issues": "https://github.com/briannesbitt/Carbon/issues",
+                "source": "https://github.com/briannesbitt/Carbon"
+            },
+            "funding": [
+                {
+                    "url": "https://opencollective.com/Carbon",
+                    "type": "open_collective"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-09-06T09:29:23+00:00"
         },
         {
             "name": "nunomaduro/collision",
@@ -3259,29 +3496,29 @@
         },
         {
             "name": "opis/closure",
-            "version": "3.5.5",
+            "version": "3.6.2",
             "source": {
                 "type": "git",
                 "url": "https://github.com/opis/closure.git",
-                "reference": "dec9fc5ecfca93f45cd6121f8e6f14457dff372c"
+                "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/opis/closure/zipball/dec9fc5ecfca93f45cd6121f8e6f14457dff372c",
-                "reference": "dec9fc5ecfca93f45cd6121f8e6f14457dff372c",
+                "url": "https://api.github.com/repos/opis/closure/zipball/06e2ebd25f2869e54a306dda991f7db58066f7f6",
+                "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6",
                 "shasum": ""
             },
             "require": {
-                "php": "^5.4 || ^7.0"
+                "php": "^5.4 || ^7.0 || ^8.0"
             },
             "require-dev": {
                 "jeremeamia/superclosure": "^2.0",
-                "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
+                "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
             },
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-master": "3.5.x-dev"
+                    "dev-master": "3.6.x-dev"
                 }
             },
             "autoload": {
@@ -3316,7 +3553,11 @@
                 "serialization",
                 "serialize"
             ],
-            "time": "2020-06-17T14:59:55+00:00"
+            "support": {
+                "issues": "https://github.com/opis/closure/issues",
+                "source": "https://github.com/opis/closure/tree/3.6.2"
+            },
+            "time": "2021-04-09T13:42:10+00:00"
         },
         {
             "name": "paragonie/certainty",
@@ -3444,20 +3685,20 @@
         },
         {
             "name": "paragonie/random_compat",
-            "version": "v9.99.99",
+            "version": "v9.99.100",
             "source": {
                 "type": "git",
                 "url": "https://github.com/paragonie/random_compat.git",
-                "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
+                "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
-                "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
+                "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
+                "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
                 "shasum": ""
             },
             "require": {
-                "php": "^7"
+                "php": ">= 7"
             },
             "require-dev": {
                 "phpunit/phpunit": "4.*|5.*",
@@ -3485,7 +3726,12 @@
                 "pseudorandom",
                 "random"
             ],
-            "time": "2018-07-02T15:55:56+00:00"
+            "support": {
+                "email": "info@paragonie.com",
+                "issues": "https://github.com/paragonie/random_compat/issues",
+                "source": "https://github.com/paragonie/random_compat"
+            },
+            "time": "2020-10-15T08:29:30+00:00"
         },
         {
             "name": "paragonie/sodium_compat",
@@ -3729,29 +3975,29 @@
         },
         {
             "name": "phpoption/phpoption",
-            "version": "1.7.4",
+            "version": "1.8.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/schmittjoh/php-option.git",
-                "reference": "b2ada2ad5d8a32b89088b8adc31ecd2e3a13baf3"
+                "reference": "5455cb38aed4523f99977c4a12ef19da4bfe2a28"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/b2ada2ad5d8a32b89088b8adc31ecd2e3a13baf3",
-                "reference": "b2ada2ad5d8a32b89088b8adc31ecd2e3a13baf3",
+                "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/5455cb38aed4523f99977c4a12ef19da4bfe2a28",
+                "reference": "5455cb38aed4523f99977c4a12ef19da4bfe2a28",
                 "shasum": ""
             },
             "require": {
-                "php": "^5.5.9 || ^7.0 || ^8.0"
+                "php": "^7.0 || ^8.0"
             },
             "require-dev": {
-                "bamarni/composer-bin-plugin": "^1.3",
-                "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0"
+                "bamarni/composer-bin-plugin": "^1.4.1",
+                "phpunit/phpunit": "^6.5.14 || ^7.0.20 || ^8.5.19 || ^9.5.8"
             },
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-master": "1.7-dev"
+                    "dev-master": "1.8-dev"
                 }
             },
             "autoload": {
@@ -3770,7 +4016,7 @@
                 },
                 {
                     "name": "Graham Campbell",
-                    "email": "graham@alt-three.com"
+                    "email": "hello@gjcampbell.co.uk"
                 }
             ],
             "description": "Option Type for PHP",
@@ -3780,7 +4026,21 @@
                 "php",
                 "type"
             ],
-            "time": "2020-06-07T10:40:07+00:00"
+            "support": {
+                "issues": "https://github.com/schmittjoh/php-option/issues",
+                "source": "https://github.com/schmittjoh/php-option/tree/1.8.0"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/GrahamCampbell",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-08-28T21:27:29+00:00"
         },
         {
             "name": "phpseclib/phpseclib",
@@ -3918,31 +4178,29 @@
                 "psr",
                 "psr-6"
             ],
+            "support": {
+                "source": "https://github.com/php-fig/cache/tree/master"
+            },
             "time": "2016-08-06T20:24:11+00:00"
         },
         {
             "name": "psr/container",
-            "version": "1.0.0",
+            "version": "1.1.1",
             "source": {
                 "type": "git",
                 "url": "https://github.com/php-fig/container.git",
-                "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
+                "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
-                "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
+                "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
+                "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
                 "shasum": ""
             },
             "require": {
-                "php": ">=5.3.0"
+                "php": ">=7.2.0"
             },
             "type": "library",
-            "extra": {
-                "branch-alias": {
-                    "dev-master": "1.0.x-dev"
-                }
-            },
             "autoload": {
                 "psr-4": {
                     "Psr\\Container\\": "src/"
@@ -3955,7 +4213,7 @@
             "authors": [
                 {
                     "name": "PHP-FIG",
-                    "homepage": "http://www.php-fig.org/"
+                    "homepage": "https://www.php-fig.org/"
                 }
             ],
             "description": "Common Container Interface (PHP FIG PSR-11)",
@@ -3967,7 +4225,11 @@
                 "container-interop",
                 "psr"
             ],
-            "time": "2017-02-14T16:28:37+00:00"
+            "support": {
+                "issues": "https://github.com/php-fig/container/issues",
+                "source": "https://github.com/php-fig/container/tree/1.1.1"
+            },
+            "time": "2021-03-05T17:36:06+00:00"
         },
         {
             "name": "psr/http-client",
@@ -4122,16 +4384,16 @@
         },
         {
             "name": "psr/log",
-            "version": "1.1.3",
+            "version": "1.1.4",
             "source": {
                 "type": "git",
                 "url": "https://github.com/php-fig/log.git",
-                "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
+                "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
-                "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
+                "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
+                "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
                 "shasum": ""
             },
             "require": {
@@ -4155,7 +4417,7 @@
             "authors": [
                 {
                     "name": "PHP-FIG",
-                    "homepage": "http://www.php-fig.org/"
+                    "homepage": "https://www.php-fig.org/"
                 }
             ],
             "description": "Common interface for logging libraries",
@@ -4165,7 +4427,10 @@
                 "psr",
                 "psr-3"
             ],
-            "time": "2020-03-23T09:12:05+00:00"
+            "support": {
+                "source": "https://github.com/php-fig/log/tree/1.1.4"
+            },
+            "time": "2021-05-03T11:20:27+00:00"
         },
         {
             "name": "psr/simple-cache",
@@ -4213,6 +4478,9 @@
                 "psr-16",
                 "simple-cache"
             ],
+            "support": {
+                "source": "https://github.com/php-fig/simple-cache/tree/master"
+            },
             "time": "2017-10-23T01:57:42+00:00"
         },
         {
@@ -4257,22 +4525,22 @@
         },
         {
             "name": "ramsey/uuid",
-            "version": "3.9.3",
+            "version": "3.9.6",
             "source": {
                 "type": "git",
                 "url": "https://github.com/ramsey/uuid.git",
-                "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92"
+                "reference": "ffa80ab953edd85d5b6c004f96181a538aad35a3"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/ramsey/uuid/zipball/7e1633a6964b48589b142d60542f9ed31bd37a92",
-                "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92",
+                "url": "https://api.github.com/repos/ramsey/uuid/zipball/ffa80ab953edd85d5b6c004f96181a538aad35a3",
+                "reference": "ffa80ab953edd85d5b6c004f96181a538aad35a3",
                 "shasum": ""
             },
             "require": {
                 "ext-json": "*",
-                "paragonie/random_compat": "^1 | ^2 | 9.99.99",
-                "php": "^5.4 | ^7 | ^8",
+                "paragonie/random_compat": "^1 | ^2 | ^9.99.99",
+                "php": "^5.4 | ^7.0 | ^8.0",
                 "symfony/polyfill-ctype": "^1.8"
             },
             "replace": {
@@ -4281,14 +4549,16 @@
             "require-dev": {
                 "codeception/aspect-mock": "^1 | ^2",
                 "doctrine/annotations": "^1.2",
-                "goaop/framework": "1.0.0-alpha.2 | ^1 | ^2.1",
-                "jakub-onderka/php-parallel-lint": "^1",
+                "goaop/framework": "1.0.0-alpha.2 | ^1 | >=2.1.0 <=2.3.2",
                 "mockery/mockery": "^0.9.11 | ^1",
                 "moontoast/math": "^1.1",
+                "nikic/php-parser": "<=4.5.0",
                 "paragonie/random-lib": "^2",
-                "php-mock/php-mock-phpunit": "^0.3 | ^1.1",
-                "phpunit/phpunit": "^4.8 | ^5.4 | ^6.5",
-                "squizlabs/php_codesniffer": "^3.5"
+                "php-mock/php-mock-phpunit": "^0.3 | ^1.1 | ^2.6",
+                "php-parallel-lint/php-parallel-lint": "^1.3",
+                "phpunit/phpunit": ">=4.8.36 <9.0.0 | >=9.3.0",
+                "squizlabs/php_codesniffer": "^3.5",
+                "yoast/phpunit-polyfills": "^1.0"
             },
             "suggest": {
                 "ext-ctype": "Provides support for PHP Ctype functions",
@@ -4340,20 +4610,36 @@
                 "identifier",
                 "uuid"
             ],
-            "time": "2020-02-21T04:36:14+00:00"
+            "support": {
+                "issues": "https://github.com/ramsey/uuid/issues",
+                "rss": "https://github.com/ramsey/uuid/releases.atom",
+                "source": "https://github.com/ramsey/uuid",
+                "wiki": "https://github.com/ramsey/uuid/wiki"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/ramsey",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-09-25T23:07:42+00:00"
         },
         {
             "name": "scrivo/highlight.php",
-            "version": "v9.18.1.1",
+            "version": "v9.18.1.7",
             "source": {
                 "type": "git",
                 "url": "https://github.com/scrivo/highlight.php.git",
-                "reference": "52fc21c99fd888e33aed4879e55a3646f8d40558"
+                "reference": "05996fcc61e97978d76ca7d1ac14b65e7cd26f91"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/scrivo/highlight.php/zipball/52fc21c99fd888e33aed4879e55a3646f8d40558",
-                "reference": "52fc21c99fd888e33aed4879e55a3646f8d40558",
+                "url": "https://api.github.com/repos/scrivo/highlight.php/zipball/05996fcc61e97978d76ca7d1ac14b65e7cd26f91",
+                "reference": "05996fcc61e97978d76ca7d1ac14b65e7cd26f91",
                 "shasum": ""
             },
             "require": {
@@ -4367,9 +4653,6 @@
                 "symfony/finder": "^2.8|^3.4",
                 "symfony/var-dumper": "^2.8|^3.4"
             },
-            "suggest": {
-                "ext-dom": "Needed to make use of the features in the utilities namespace"
-            },
             "type": "library",
             "autoload": {
                 "psr-0": {
@@ -4409,7 +4692,17 @@
                 "highlight.php",
                 "syntax"
             ],
-            "time": "2020-03-02T05:59:21+00:00"
+            "support": {
+                "issues": "https://github.com/scrivo/highlight.php/issues",
+                "source": "https://github.com/scrivo/highlight.php"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/allejo",
+                    "type": "github"
+                }
+            ],
+            "time": "2021-07-09T00:30:39+00:00"
         },
         {
             "name": "shalvah/clara",
@@ -4593,32 +4886,31 @@
         },
         {
             "name": "swiftmailer/swiftmailer",
-            "version": "v6.2.3",
+            "version": "v6.2.7",
             "source": {
                 "type": "git",
                 "url": "https://github.com/swiftmailer/swiftmailer.git",
-                "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9"
+                "reference": "15f7faf8508e04471f666633addacf54c0ab5933"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
-                "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
+                "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/15f7faf8508e04471f666633addacf54c0ab5933",
+                "reference": "15f7faf8508e04471f666633addacf54c0ab5933",
                 "shasum": ""
             },
             "require": {
-                "egulias/email-validator": "~2.0",
+                "egulias/email-validator": "^2.0|^3.1",
                 "php": ">=7.0.0",
                 "symfony/polyfill-iconv": "^1.0",
                 "symfony/polyfill-intl-idn": "^1.10",
                 "symfony/polyfill-mbstring": "^1.0"
             },
             "require-dev": {
-                "mockery/mockery": "~0.9.1",
-                "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
+                "mockery/mockery": "^1.0",
+                "symfony/phpunit-bridge": "^4.4|^5.0"
             },
             "suggest": {
-                "ext-intl": "Needed to support internationalized email addresses",
-                "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
+                "ext-intl": "Needed to support internationalized email addresses"
             },
             "type": "library",
             "extra": {
@@ -4651,40 +4943,55 @@
                 "mail",
                 "mailer"
             ],
-            "time": "2019-11-12T09:31:26+00:00"
+            "support": {
+                "issues": "https://github.com/swiftmailer/swiftmailer/issues",
+                "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.7"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-03-09T12:30:35+00:00"
         },
         {
             "name": "symfony/console",
-            "version": "v4.4.10",
+            "version": "v4.4.30",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/console.git",
-                "reference": "326b064d804043005526f5a0494cfb49edb59bb0"
+                "reference": "a3f7189a0665ee33b50e9e228c46f50f5acbed22"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/console/zipball/326b064d804043005526f5a0494cfb49edb59bb0",
-                "reference": "326b064d804043005526f5a0494cfb49edb59bb0",
+                "url": "https://api.github.com/repos/symfony/console/zipball/a3f7189a0665ee33b50e9e228c46f50f5acbed22",
+                "reference": "a3f7189a0665ee33b50e9e228c46f50f5acbed22",
                 "shasum": ""
             },
             "require": {
                 "php": ">=7.1.3",
                 "symfony/polyfill-mbstring": "~1.0",
                 "symfony/polyfill-php73": "^1.8",
-                "symfony/polyfill-php80": "^1.15",
+                "symfony/polyfill-php80": "^1.16",
                 "symfony/service-contracts": "^1.1|^2"
             },
             "conflict": {
+                "psr/log": ">=3",
                 "symfony/dependency-injection": "<3.4",
                 "symfony/event-dispatcher": "<4.3|>=5",
                 "symfony/lock": "<4.4",
                 "symfony/process": "<3.3"
             },
             "provide": {
-                "psr/log-implementation": "1.0"
+                "psr/log-implementation": "1.0|2.0"
             },
             "require-dev": {
-                "psr/log": "~1.0",
+                "psr/log": "^1|^2",
                 "symfony/config": "^3.4|^4.0|^5.0",
                 "symfony/dependency-injection": "^3.4|^4.0|^5.0",
                 "symfony/event-dispatcher": "^4.3",
@@ -4699,11 +5006,6 @@
                 "symfony/process": ""
             },
             "type": "library",
-            "extra": {
-                "branch-alias": {
-                    "dev-master": "4.4-dev"
-                }
-            },
             "autoload": {
                 "psr-4": {
                     "Symfony\\Component\\Console\\": ""
@@ -4726,33 +5028,46 @@
                     "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "Symfony Console Component",
+            "description": "Eases the creation of beautiful and testable command line interfaces",
             "homepage": "https://symfony.com",
-            "time": "2020-05-30T20:06:45+00:00"
+            "support": {
+                "source": "https://github.com/symfony/console/tree/v4.4.30"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-08-25T19:27:26+00:00"
         },
         {
             "name": "symfony/css-selector",
-            "version": "v5.1.2",
+            "version": "v5.3.4",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/css-selector.git",
-                "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9"
+                "reference": "7fb120adc7f600a59027775b224c13a33530dd90"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/css-selector/zipball/e544e24472d4c97b2d11ade7caacd446727c6bf9",
-                "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9",
+                "url": "https://api.github.com/repos/symfony/css-selector/zipball/7fb120adc7f600a59027775b224c13a33530dd90",
+                "reference": "7fb120adc7f600a59027775b224c13a33530dd90",
                 "shasum": ""
             },
             "require": {
-                "php": ">=7.2.5"
+                "php": ">=7.2.5",
+                "symfony/polyfill-php80": "^1.16"
             },
             "type": "library",
-            "extra": {
-                "branch-alias": {
-                    "dev-master": "5.1-dev"
-                }
-            },
             "autoload": {
                 "psr-4": {
                     "Symfony\\Component\\CssSelector\\": ""
@@ -4779,28 +5094,44 @@
                     "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "Symfony CssSelector Component",
+            "description": "Converts CSS selectors to XPath expressions",
             "homepage": "https://symfony.com",
-            "time": "2020-05-20T17:43:50+00:00"
+            "support": {
+                "source": "https://github.com/symfony/css-selector/tree/v5.3.4"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-07-21T12:38:00+00:00"
         },
         {
             "name": "symfony/debug",
-            "version": "v4.4.10",
+            "version": "v4.4.31",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/debug.git",
-                "reference": "28f92d08bb6d1fddf8158e02c194ad43870007e6"
+                "reference": "43ede438d4cb52cd589ae5dc070e9323866ba8e0"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/debug/zipball/28f92d08bb6d1fddf8158e02c194ad43870007e6",
-                "reference": "28f92d08bb6d1fddf8158e02c194ad43870007e6",
+                "url": "https://api.github.com/repos/symfony/debug/zipball/43ede438d4cb52cd589ae5dc070e9323866ba8e0",
+                "reference": "43ede438d4cb52cd589ae5dc070e9323866ba8e0",
                 "shasum": ""
             },
             "require": {
                 "php": ">=7.1.3",
-                "psr/log": "~1.0",
-                "symfony/polyfill-php80": "^1.15"
+                "psr/log": "^1|^2|^3"
             },
             "conflict": {
                 "symfony/http-kernel": "<3.4"
@@ -4809,11 +5140,6 @@
                 "symfony/http-kernel": "^3.4|^4.0|^5.0"
             },
             "type": "library",
-            "extra": {
-                "branch-alias": {
-                    "dev-master": "4.4-dev"
-                }
-            },
             "autoload": {
                 "psr-4": {
                     "Symfony\\Component\\Debug\\": ""
@@ -4836,29 +5162,112 @@
                     "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "Symfony Debug Component",
+            "description": "Provides tools to ease debugging PHP code",
+            "homepage": "https://symfony.com",
+            "support": {
+                "source": "https://github.com/symfony/debug/tree/v4.4.31"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-09-24T13:30:14+00:00"
+        },
+        {
+            "name": "symfony/deprecation-contracts",
+            "version": "v2.4.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/deprecation-contracts.git",
+                "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627",
+                "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.1"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-main": "2.4-dev"
+                },
+                "thanks": {
+                    "name": "symfony/contracts",
+                    "url": "https://github.com/symfony/contracts"
+                }
+            },
+            "autoload": {
+                "files": [
+                    "function.php"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Nicolas Grekas",
+                    "email": "p@tchwork.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "A generic function and convention to trigger deprecation notices",
             "homepage": "https://symfony.com",
-            "time": "2020-05-24T08:33:35+00:00"
+            "support": {
+                "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-03-23T23:28:01+00:00"
         },
         {
             "name": "symfony/error-handler",
-            "version": "v4.4.10",
+            "version": "v4.4.30",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/error-handler.git",
-                "reference": "0df9a23c0f9eddbb6682479fee6fd58b88add75b"
+                "reference": "51f98f7aa99f00f3b1da6bafe934e67ae6ba6dc5"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/error-handler/zipball/0df9a23c0f9eddbb6682479fee6fd58b88add75b",
-                "reference": "0df9a23c0f9eddbb6682479fee6fd58b88add75b",
+                "url": "https://api.github.com/repos/symfony/error-handler/zipball/51f98f7aa99f00f3b1da6bafe934e67ae6ba6dc5",
+                "reference": "51f98f7aa99f00f3b1da6bafe934e67ae6ba6dc5",
                 "shasum": ""
             },
             "require": {
                 "php": ">=7.1.3",
-                "psr/log": "~1.0",
+                "psr/log": "^1|^2|^3",
                 "symfony/debug": "^4.4.5",
-                "symfony/polyfill-php80": "^1.15",
                 "symfony/var-dumper": "^4.4|^5.0"
             },
             "require-dev": {
@@ -4866,11 +5275,6 @@
                 "symfony/serializer": "^4.4|^5.0"
             },
             "type": "library",
-            "extra": {
-                "branch-alias": {
-                    "dev-master": "4.4-dev"
-                }
-            },
             "autoload": {
                 "psr-4": {
                     "Symfony\\Component\\ErrorHandler\\": ""
@@ -4893,27 +5297,45 @@
                     "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "Symfony ErrorHandler Component",
+            "description": "Provides tools to manage errors and ease debugging PHP code",
             "homepage": "https://symfony.com",
-            "time": "2020-05-28T10:39:14+00:00"
+            "support": {
+                "source": "https://github.com/symfony/error-handler/tree/v4.4.30"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-08-27T17:42:48+00:00"
         },
         {
             "name": "symfony/event-dispatcher",
-            "version": "v4.4.10",
+            "version": "v4.4.30",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/event-dispatcher.git",
-                "reference": "a5370aaa7807c7a439b21386661ffccf3dff2866"
+                "reference": "2fe81680070043c4c80e7cedceb797e34f377bac"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/a5370aaa7807c7a439b21386661ffccf3dff2866",
-                "reference": "a5370aaa7807c7a439b21386661ffccf3dff2866",
+                "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2fe81680070043c4c80e7cedceb797e34f377bac",
+                "reference": "2fe81680070043c4c80e7cedceb797e34f377bac",
                 "shasum": ""
             },
             "require": {
                 "php": ">=7.1.3",
-                "symfony/event-dispatcher-contracts": "^1.1"
+                "symfony/event-dispatcher-contracts": "^1.1",
+                "symfony/polyfill-php80": "^1.16"
             },
             "conflict": {
                 "symfony/dependency-injection": "<3.4"
@@ -4923,9 +5345,10 @@
                 "symfony/event-dispatcher-implementation": "1.1"
             },
             "require-dev": {
-                "psr/log": "~1.0",
+                "psr/log": "^1|^2|^3",
                 "symfony/config": "^3.4|^4.0|^5.0",
                 "symfony/dependency-injection": "^3.4|^4.0|^5.0",
+                "symfony/error-handler": "~3.4|~4.4",
                 "symfony/expression-language": "^3.4|^4.0|^5.0",
                 "symfony/http-foundation": "^3.4|^4.0|^5.0",
                 "symfony/service-contracts": "^1.1|^2",
@@ -4936,11 +5359,6 @@
                 "symfony/http-kernel": ""
             },
             "type": "library",
-            "extra": {
-                "branch-alias": {
-                    "dev-master": "4.4-dev"
-                }
-            },
             "autoload": {
                 "psr-4": {
                     "Symfony\\Component\\EventDispatcher\\": ""
@@ -4963,26 +5381,43 @@
                     "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "Symfony EventDispatcher Component",
+            "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
             "homepage": "https://symfony.com",
-            "time": "2020-05-20T08:37:50+00:00"
+            "support": {
+                "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.30"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-08-04T20:31:23+00:00"
         },
         {
             "name": "symfony/event-dispatcher-contracts",
-            "version": "v1.1.7",
+            "version": "v1.1.9",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/event-dispatcher-contracts.git",
-                "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18"
+                "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/c43ab685673fb6c8d84220c77897b1d6cdbe1d18",
-                "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18",
+                "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7",
+                "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7",
                 "shasum": ""
             },
             "require": {
-                "php": "^7.1.3"
+                "php": ">=7.1.3"
             },
             "suggest": {
                 "psr/event-dispatcher": "",
@@ -4992,6 +5427,10 @@
             "extra": {
                 "branch-alias": {
                     "dev-master": "1.1-dev"
+                },
+                "thanks": {
+                    "name": "symfony/contracts",
+                    "url": "https://github.com/symfony/contracts"
                 }
             },
             "autoload": {
@@ -5023,31 +5462,44 @@
                 "interoperability",
                 "standards"
             ],
-            "time": "2019-09-17T09:54:03+00:00"
+            "support": {
+                "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.9"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2020-07-06T13:19:58+00:00"
         },
         {
             "name": "symfony/finder",
-            "version": "v4.4.10",
+            "version": "v4.4.30",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/finder.git",
-                "reference": "5729f943f9854c5781984ed4907bbb817735776b"
+                "reference": "70362f1e112280d75b30087c7598b837c1b468b6"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/finder/zipball/5729f943f9854c5781984ed4907bbb817735776b",
-                "reference": "5729f943f9854c5781984ed4907bbb817735776b",
+                "url": "https://api.github.com/repos/symfony/finder/zipball/70362f1e112280d75b30087c7598b837c1b468b6",
+                "reference": "70362f1e112280d75b30087c7598b837c1b468b6",
                 "shasum": ""
             },
             "require": {
-                "php": "^7.1.3"
+                "php": ">=7.1.3",
+                "symfony/polyfill-php80": "^1.16"
             },
             "type": "library",
-            "extra": {
-                "branch-alias": {
-                    "dev-master": "4.4-dev"
-                }
-            },
             "autoload": {
                 "psr-4": {
                     "Symfony\\Component\\Finder\\": ""
@@ -5070,39 +5522,130 @@
                     "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "Symfony Finder Component",
+            "description": "Finds files and directories via an intuitive fluent interface",
             "homepage": "https://symfony.com",
-            "time": "2020-03-27T16:54:36+00:00"
+            "support": {
+                "source": "https://github.com/symfony/finder/tree/v4.4.30"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-08-04T20:31:23+00:00"
+        },
+        {
+            "name": "symfony/http-client-contracts",
+            "version": "v2.4.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/http-client-contracts.git",
+                "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
+                "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.2.5"
+            },
+            "suggest": {
+                "symfony/http-client-implementation": ""
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-main": "2.4-dev"
+                },
+                "thanks": {
+                    "name": "symfony/contracts",
+                    "url": "https://github.com/symfony/contracts"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Contracts\\HttpClient\\": ""
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Nicolas Grekas",
+                    "email": "p@tchwork.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Generic abstractions related to HTTP clients",
+            "homepage": "https://symfony.com",
+            "keywords": [
+                "abstractions",
+                "contracts",
+                "decoupling",
+                "interfaces",
+                "interoperability",
+                "standards"
+            ],
+            "support": {
+                "source": "https://github.com/symfony/http-client-contracts/tree/v2.4.0"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-04-11T23:07:08+00:00"
         },
         {
             "name": "symfony/http-foundation",
-            "version": "v4.4.10",
+            "version": "v4.4.30",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/http-foundation.git",
-                "reference": "3adfbd7098c850b02d107330b7b9deacf2581578"
+                "reference": "09b3202651ab23ac8dcf455284a48a3500e56731"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3adfbd7098c850b02d107330b7b9deacf2581578",
-                "reference": "3adfbd7098c850b02d107330b7b9deacf2581578",
+                "url": "https://api.github.com/repos/symfony/http-foundation/zipball/09b3202651ab23ac8dcf455284a48a3500e56731",
+                "reference": "09b3202651ab23ac8dcf455284a48a3500e56731",
                 "shasum": ""
             },
             "require": {
                 "php": ">=7.1.3",
                 "symfony/mime": "^4.3|^5.0",
-                "symfony/polyfill-mbstring": "~1.1"
+                "symfony/polyfill-mbstring": "~1.1",
+                "symfony/polyfill-php80": "^1.16"
             },
             "require-dev": {
                 "predis/predis": "~1.0",
                 "symfony/expression-language": "^3.4|^4.0|^5.0"
             },
             "type": "library",
-            "extra": {
-                "branch-alias": {
-                    "dev-master": "4.4-dev"
-                }
-            },
             "autoload": {
                 "psr-4": {
                     "Symfony\\Component\\HttpFoundation\\": ""
@@ -5125,33 +5668,51 @@
                     "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "Symfony HttpFoundation Component",
+            "description": "Defines an object-oriented layer for the HTTP specification",
             "homepage": "https://symfony.com",
-            "time": "2020-05-23T09:11:46+00:00"
+            "support": {
+                "source": "https://github.com/symfony/http-foundation/tree/v4.4.30"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-08-26T15:51:23+00:00"
         },
         {
             "name": "symfony/http-kernel",
-            "version": "v4.4.10",
+            "version": "v4.4.32",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/http-kernel.git",
-                "reference": "81d42148474e1852a333ed7a732f2a014af75430"
+                "reference": "f7bda3ea8f05ae90627400e58af5179b25ce0f38"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/http-kernel/zipball/81d42148474e1852a333ed7a732f2a014af75430",
-                "reference": "81d42148474e1852a333ed7a732f2a014af75430",
+                "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f7bda3ea8f05ae90627400e58af5179b25ce0f38",
+                "reference": "f7bda3ea8f05ae90627400e58af5179b25ce0f38",
                 "shasum": ""
             },
             "require": {
                 "php": ">=7.1.3",
-                "psr/log": "~1.0",
+                "psr/log": "^1|^2",
                 "symfony/error-handler": "^4.4",
                 "symfony/event-dispatcher": "^4.4",
-                "symfony/http-foundation": "^4.4|^5.0",
+                "symfony/http-client-contracts": "^1.1|^2",
+                "symfony/http-foundation": "^4.4.30|^5.3.7",
                 "symfony/polyfill-ctype": "^1.8",
                 "symfony/polyfill-php73": "^1.9",
-                "symfony/polyfill-php80": "^1.15"
+                "symfony/polyfill-php80": "^1.16"
             },
             "conflict": {
                 "symfony/browser-kit": "<4.3",
@@ -5159,13 +5720,13 @@
                 "symfony/console": ">=5",
                 "symfony/dependency-injection": "<4.3",
                 "symfony/translation": "<4.2",
-                "twig/twig": "<1.34|<2.4,>=2"
+                "twig/twig": "<1.43|<2.13,>=2"
             },
             "provide": {
-                "psr/log-implementation": "1.0"
+                "psr/log-implementation": "1.0|2.0"
             },
             "require-dev": {
-                "psr/cache": "~1.0",
+                "psr/cache": "^1.0|^2.0|^3.0",
                 "symfony/browser-kit": "^4.3|^5.0",
                 "symfony/config": "^3.4|^4.0|^5.0",
                 "symfony/console": "^3.4|^4.0",
@@ -5180,7 +5741,7 @@
                 "symfony/templating": "^3.4|^4.0|^5.0",
                 "symfony/translation": "^4.2|^5.0",
                 "symfony/translation-contracts": "^1.1|^2",
-                "twig/twig": "^1.34|^2.4|^3.0"
+                "twig/twig": "^1.43|^2.13|^3.0.4"
             },
             "suggest": {
                 "symfony/browser-kit": "",
@@ -5189,11 +5750,6 @@
                 "symfony/dependency-injection": ""
             },
             "type": "library",
-            "extra": {
-                "branch-alias": {
-                    "dev-master": "4.4-dev"
-                }
-            },
             "autoload": {
                 "psr-4": {
                     "Symfony\\Component\\HttpKernel\\": ""
@@ -5216,43 +5772,63 @@
                     "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "Symfony HttpKernel Component",
+            "description": "Provides a structured process for converting a Request into a Response",
             "homepage": "https://symfony.com",
-            "time": "2020-06-12T11:15:37+00:00"
+            "support": {
+                "source": "https://github.com/symfony/http-kernel/tree/v4.4.32"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-09-28T10:20:04+00:00"
         },
         {
             "name": "symfony/mime",
-            "version": "v5.1.2",
+            "version": "v5.3.8",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/mime.git",
-                "reference": "c0c418f05e727606e85b482a8591519c4712cf45"
+                "reference": "a756033d0a7e53db389618653ae991eba5a19a11"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/mime/zipball/c0c418f05e727606e85b482a8591519c4712cf45",
-                "reference": "c0c418f05e727606e85b482a8591519c4712cf45",
+                "url": "https://api.github.com/repos/symfony/mime/zipball/a756033d0a7e53db389618653ae991eba5a19a11",
+                "reference": "a756033d0a7e53db389618653ae991eba5a19a11",
                 "shasum": ""
             },
             "require": {
                 "php": ">=7.2.5",
+                "symfony/deprecation-contracts": "^2.1",
                 "symfony/polyfill-intl-idn": "^1.10",
                 "symfony/polyfill-mbstring": "^1.0",
-                "symfony/polyfill-php80": "^1.15"
+                "symfony/polyfill-php80": "^1.16"
             },
             "conflict": {
+                "egulias/email-validator": "~3.0.0",
+                "phpdocumentor/reflection-docblock": "<3.2.2",
+                "phpdocumentor/type-resolver": "<1.4.0",
                 "symfony/mailer": "<4.4"
             },
             "require-dev": {
-                "egulias/email-validator": "^2.1.10",
-                "symfony/dependency-injection": "^4.4|^5.0"
+                "egulias/email-validator": "^2.1.10|^3.1",
+                "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
+                "symfony/dependency-injection": "^4.4|^5.0",
+                "symfony/property-access": "^4.4|^5.1",
+                "symfony/property-info": "^4.4|^5.1",
+                "symfony/serializer": "^5.2"
             },
             "type": "library",
-            "extra": {
-                "branch-alias": {
-                    "dev-master": "5.1-dev"
-                }
-            },
             "autoload": {
                 "psr-4": {
                     "Symfony\\Component\\Mime\\": ""
@@ -5275,30 +5851,47 @@
                     "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "A library to manipulate MIME messages",
+            "description": "Allows manipulating MIME messages",
             "homepage": "https://symfony.com",
             "keywords": [
                 "mime",
                 "mime-type"
             ],
-            "time": "2020-06-09T15:07:35+00:00"
+            "support": {
+                "source": "https://github.com/symfony/mime/tree/v5.3.8"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-09-10T12:30:38+00:00"
         },
         {
             "name": "symfony/polyfill-ctype",
-            "version": "v1.17.1",
+            "version": "v1.23.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/polyfill-ctype.git",
-                "reference": "2edd75b8b35d62fd3eeabba73b26b8f1f60ce13d"
+                "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/2edd75b8b35d62fd3eeabba73b26b8f1f60ce13d",
-                "reference": "2edd75b8b35d62fd3eeabba73b26b8f1f60ce13d",
+                "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
+                "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
                 "shasum": ""
             },
             "require": {
-                "php": ">=5.3.3"
+                "php": ">=7.1"
             },
             "suggest": {
                 "ext-ctype": "For best performance"
@@ -5306,7 +5899,7 @@
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-master": "1.17-dev"
+                    "dev-main": "1.23-dev"
                 },
                 "thanks": {
                     "name": "symfony/polyfill",
@@ -5343,24 +5936,41 @@
                 "polyfill",
                 "portable"
             ],
-            "time": "2020-06-06T08:46:27+00:00"
+            "support": {
+                "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-02-19T12:13:01+00:00"
         },
         {
             "name": "symfony/polyfill-iconv",
-            "version": "v1.17.1",
+            "version": "v1.23.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/polyfill-iconv.git",
-                "reference": "ba6c9c18db36235b859cc29b8372d1c01298c035"
+                "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/ba6c9c18db36235b859cc29b8372d1c01298c035",
-                "reference": "ba6c9c18db36235b859cc29b8372d1c01298c035",
+                "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933",
+                "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933",
                 "shasum": ""
             },
             "require": {
-                "php": ">=5.3.3"
+                "php": ">=7.1"
             },
             "suggest": {
                 "ext-iconv": "For best performance"
@@ -5368,7 +5978,7 @@
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-master": "1.17-dev"
+                    "dev-main": "1.23-dev"
                 },
                 "thanks": {
                     "name": "symfony/polyfill",
@@ -5389,43 +5999,145 @@
             ],
             "authors": [
                 {
-                    "name": "Nicolas Grekas",
-                    "email": "p@tchwork.com"
+                    "name": "Nicolas Grekas",
+                    "email": "p@tchwork.com"
+                },
+                {
+                    "name": "Symfony Community",
+                    "homepage": "https://symfony.com/contributors"
+                }
+            ],
+            "description": "Symfony polyfill for the Iconv extension",
+            "homepage": "https://symfony.com",
+            "keywords": [
+                "compatibility",
+                "iconv",
+                "polyfill",
+                "portable",
+                "shim"
+            ],
+            "support": {
+                "source": "https://github.com/symfony/polyfill-iconv/tree/v1.23.0"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-05-27T09:27:20+00:00"
+        },
+        {
+            "name": "symfony/polyfill-intl-idn",
+            "version": "v1.23.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/symfony/polyfill-intl-idn.git",
+                "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65",
+                "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=7.1",
+                "symfony/polyfill-intl-normalizer": "^1.10",
+                "symfony/polyfill-php72": "^1.10"
+            },
+            "suggest": {
+                "ext-intl": "For best performance"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-main": "1.23-dev"
+                },
+                "thanks": {
+                    "name": "symfony/polyfill",
+                    "url": "https://github.com/symfony/polyfill"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Symfony\\Polyfill\\Intl\\Idn\\": ""
+                },
+                "files": [
+                    "bootstrap.php"
+                ]
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Laurent Bassin",
+                    "email": "laurent@bassin.info"
+                },
+                {
+                    "name": "Trevor Rowbotham",
+                    "email": "trevor.rowbotham@pm.me"
                 },
                 {
                     "name": "Symfony Community",
                     "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "Symfony polyfill for the Iconv extension",
+            "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
             "homepage": "https://symfony.com",
             "keywords": [
                 "compatibility",
-                "iconv",
+                "idn",
+                "intl",
                 "polyfill",
                 "portable",
                 "shim"
             ],
-            "time": "2020-06-06T08:46:27+00:00"
+            "support": {
+                "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.23.0"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-05-27T09:27:20+00:00"
         },
         {
-            "name": "symfony/polyfill-intl-idn",
-            "version": "v1.17.1",
+            "name": "symfony/polyfill-intl-normalizer",
+            "version": "v1.23.0",
             "source": {
                 "type": "git",
-                "url": "https://github.com/symfony/polyfill-intl-idn.git",
-                "reference": "a57f8161502549a742a63c09f0a604997bf47027"
+                "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
+                "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a57f8161502549a742a63c09f0a604997bf47027",
-                "reference": "a57f8161502549a742a63c09f0a604997bf47027",
+                "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
+                "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
                 "shasum": ""
             },
             "require": {
-                "php": ">=5.3.3",
-                "symfony/polyfill-mbstring": "^1.3",
-                "symfony/polyfill-php72": "^1.10"
+                "php": ">=7.1"
             },
             "suggest": {
                 "ext-intl": "For best performance"
@@ -5433,7 +6145,7 @@
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-master": "1.17-dev"
+                    "dev-main": "1.23-dev"
                 },
                 "thanks": {
                     "name": "symfony/polyfill",
@@ -5442,10 +6154,13 @@
             },
             "autoload": {
                 "psr-4": {
-                    "Symfony\\Polyfill\\Intl\\Idn\\": ""
+                    "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
                 },
                 "files": [
                     "bootstrap.php"
+                ],
+                "classmap": [
+                    "Resources/stubs"
                 ]
             },
             "notification-url": "https://packagist.org/downloads/",
@@ -5454,42 +6169,59 @@
             ],
             "authors": [
                 {
-                    "name": "Laurent Bassin",
-                    "email": "laurent@bassin.info"
+                    "name": "Nicolas Grekas",
+                    "email": "p@tchwork.com"
                 },
                 {
                     "name": "Symfony Community",
                     "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
+            "description": "Symfony polyfill for intl's Normalizer class and related functions",
             "homepage": "https://symfony.com",
             "keywords": [
                 "compatibility",
-                "idn",
                 "intl",
+                "normalizer",
                 "polyfill",
                 "portable",
                 "shim"
             ],
-            "time": "2020-06-06T08:46:27+00:00"
+            "support": {
+                "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-02-19T12:13:01+00:00"
         },
         {
             "name": "symfony/polyfill-mbstring",
-            "version": "v1.17.1",
+            "version": "v1.23.1",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/polyfill-mbstring.git",
-                "reference": "7110338d81ce1cbc3e273136e4574663627037a7"
+                "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/7110338d81ce1cbc3e273136e4574663627037a7",
-                "reference": "7110338d81ce1cbc3e273136e4574663627037a7",
+                "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6",
+                "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6",
                 "shasum": ""
             },
             "require": {
-                "php": ">=5.3.3"
+                "php": ">=7.1"
             },
             "suggest": {
                 "ext-mbstring": "For best performance"
@@ -5497,7 +6229,7 @@
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-master": "1.17-dev"
+                    "dev-main": "1.23-dev"
                 },
                 "thanks": {
                     "name": "symfony/polyfill",
@@ -5535,29 +6267,50 @@
                 "portable",
                 "shim"
             ],
-            "time": "2020-06-06T08:46:27+00:00"
+            "support": {
+                "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.1"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-05-27T12:26:48+00:00"
         },
         {
             "name": "symfony/polyfill-php72",
-            "version": "v1.17.0",
+            "version": "v1.23.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/polyfill-php72.git",
-                "reference": "f048e612a3905f34931127360bdd2def19a5e582"
+                "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582",
-                "reference": "f048e612a3905f34931127360bdd2def19a5e582",
+                "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
+                "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
                 "shasum": ""
             },
             "require": {
-                "php": ">=5.3.3"
+                "php": ">=7.1"
             },
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-master": "1.17-dev"
+                    "dev-main": "1.23-dev"
+                },
+                "thanks": {
+                    "name": "symfony/polyfill",
+                    "url": "https://github.com/symfony/polyfill"
                 }
             },
             "autoload": {
@@ -5590,29 +6343,46 @@
                 "portable",
                 "shim"
             ],
-            "time": "2020-05-12T16:47:27+00:00"
+            "support": {
+                "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-05-27T09:17:38+00:00"
         },
         {
             "name": "symfony/polyfill-php73",
-            "version": "v1.17.1",
+            "version": "v1.23.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/polyfill-php73.git",
-                "reference": "fa0837fe02d617d31fbb25f990655861bb27bd1a"
+                "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fa0837fe02d617d31fbb25f990655861bb27bd1a",
-                "reference": "fa0837fe02d617d31fbb25f990655861bb27bd1a",
+                "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
+                "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
                 "shasum": ""
             },
             "require": {
-                "php": ">=5.3.3"
+                "php": ">=7.1"
             },
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-master": "1.17-dev"
+                    "dev-main": "1.23-dev"
                 },
                 "thanks": {
                     "name": "symfony/polyfill",
@@ -5652,29 +6422,46 @@
                 "portable",
                 "shim"
             ],
-            "time": "2020-06-06T08:46:27+00:00"
+            "support": {
+                "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-02-19T12:13:01+00:00"
         },
         {
             "name": "symfony/polyfill-php80",
-            "version": "v1.17.1",
+            "version": "v1.23.1",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/polyfill-php80.git",
-                "reference": "4a5b6bba3259902e386eb80dd1956181ee90b5b2"
+                "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/4a5b6bba3259902e386eb80dd1956181ee90b5b2",
-                "reference": "4a5b6bba3259902e386eb80dd1956181ee90b5b2",
+                "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be",
+                "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be",
                 "shasum": ""
             },
             "require": {
-                "php": ">=7.0.8"
+                "php": ">=7.1"
             },
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-master": "1.17-dev"
+                    "dev-main": "1.23-dev"
                 },
                 "thanks": {
                     "name": "symfony/polyfill",
@@ -5718,31 +6505,44 @@
                 "portable",
                 "shim"
             ],
-            "time": "2020-06-06T08:46:27+00:00"
+            "support": {
+                "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.1"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-07-28T13:41:28+00:00"
         },
         {
             "name": "symfony/process",
-            "version": "v4.4.10",
+            "version": "v4.4.30",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/process.git",
-                "reference": "c714958428a85c86ab97e3a0c96db4c4f381b7f5"
+                "reference": "13d3161ef63a8ec21eeccaaf9a4d7f784a87a97d"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/process/zipball/c714958428a85c86ab97e3a0c96db4c4f381b7f5",
-                "reference": "c714958428a85c86ab97e3a0c96db4c4f381b7f5",
+                "url": "https://api.github.com/repos/symfony/process/zipball/13d3161ef63a8ec21eeccaaf9a4d7f784a87a97d",
+                "reference": "13d3161ef63a8ec21eeccaaf9a4d7f784a87a97d",
                 "shasum": ""
             },
             "require": {
-                "php": "^7.1.3"
+                "php": ">=7.1.3",
+                "symfony/polyfill-php80": "^1.16"
             },
             "type": "library",
-            "extra": {
-                "branch-alias": {
-                    "dev-master": "4.4-dev"
-                }
-            },
             "autoload": {
                 "psr-4": {
                     "Symfony\\Component\\Process\\": ""
@@ -5765,9 +6565,26 @@
                     "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "Symfony Process Component",
+            "description": "Executes commands in sub-processes",
             "homepage": "https://symfony.com",
-            "time": "2020-05-30T20:06:45+00:00"
+            "support": {
+                "source": "https://github.com/symfony/process/tree/v4.4.30"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-08-04T20:31:23+00:00"
         },
         {
             "name": "symfony/psr-http-message-bridge",
@@ -5835,20 +6652,21 @@
         },
         {
             "name": "symfony/routing",
-            "version": "v4.4.10",
+            "version": "v4.4.30",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/routing.git",
-                "reference": "0f557911dde75c2a9652b8097bd7c9f54507f646"
+                "reference": "9ddf033927ad9f30ba2bfd167a7b342cafa13e8e"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/routing/zipball/0f557911dde75c2a9652b8097bd7c9f54507f646",
-                "reference": "0f557911dde75c2a9652b8097bd7c9f54507f646",
+                "url": "https://api.github.com/repos/symfony/routing/zipball/9ddf033927ad9f30ba2bfd167a7b342cafa13e8e",
+                "reference": "9ddf033927ad9f30ba2bfd167a7b342cafa13e8e",
                 "shasum": ""
             },
             "require": {
-                "php": "^7.1.3"
+                "php": ">=7.1.3",
+                "symfony/polyfill-php80": "^1.16"
             },
             "conflict": {
                 "symfony/config": "<4.2",
@@ -5856,8 +6674,8 @@
                 "symfony/yaml": "<3.4"
             },
             "require-dev": {
-                "doctrine/annotations": "~1.2",
-                "psr/log": "~1.0",
+                "doctrine/annotations": "^1.10.4",
+                "psr/log": "^1|^2|^3",
                 "symfony/config": "^4.2|^5.0",
                 "symfony/dependency-injection": "^3.4|^4.0|^5.0",
                 "symfony/expression-language": "^3.4|^4.0|^5.0",
@@ -5872,11 +6690,6 @@
                 "symfony/yaml": "For using the YAML loader"
             },
             "type": "library",
-            "extra": {
-                "branch-alias": {
-                    "dev-master": "4.4-dev"
-                }
-            },
             "autoload": {
                 "psr-4": {
                     "Symfony\\Component\\Routing\\": ""
@@ -5899,7 +6712,7 @@
                     "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "Symfony Routing Component",
+            "description": "Maps an HTTP request to a set of configuration variables",
             "homepage": "https://symfony.com",
             "keywords": [
                 "router",
@@ -5907,25 +6720,42 @@
                 "uri",
                 "url"
             ],
-            "time": "2020-05-30T20:07:26+00:00"
+            "support": {
+                "source": "https://github.com/symfony/routing/tree/v4.4.30"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-08-04T21:41:01+00:00"
         },
         {
             "name": "symfony/service-contracts",
-            "version": "v2.1.2",
+            "version": "v2.4.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/service-contracts.git",
-                "reference": "66a8f0957a3ca54e4f724e49028ab19d75a8918b"
+                "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/service-contracts/zipball/66a8f0957a3ca54e4f724e49028ab19d75a8918b",
-                "reference": "66a8f0957a3ca54e4f724e49028ab19d75a8918b",
+                "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
+                "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
                 "shasum": ""
             },
             "require": {
                 "php": ">=7.2.5",
-                "psr/container": "^1.0"
+                "psr/container": "^1.1"
             },
             "suggest": {
                 "symfony/service-implementation": ""
@@ -5933,7 +6763,11 @@
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-master": "2.1-dev"
+                    "dev-main": "2.4-dev"
+                },
+                "thanks": {
+                    "name": "symfony/contracts",
+                    "url": "https://github.com/symfony/contracts"
                 }
             },
             "autoload": {
@@ -5965,25 +6799,43 @@
                 "interoperability",
                 "standards"
             ],
-            "time": "2020-05-20T17:43:50+00:00"
+            "support": {
+                "source": "https://github.com/symfony/service-contracts/tree/v2.4.0"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-04-01T10:43:52+00:00"
         },
         {
             "name": "symfony/translation",
-            "version": "v4.4.10",
+            "version": "v4.4.32",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/translation.git",
-                "reference": "79d3ef9096a6a6047dbc69218b68c7b7f63193af"
+                "reference": "db0ba1e85280d8ff11e38d53c70f8814d4d740f5"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/translation/zipball/79d3ef9096a6a6047dbc69218b68c7b7f63193af",
-                "reference": "79d3ef9096a6a6047dbc69218b68c7b7f63193af",
+                "url": "https://api.github.com/repos/symfony/translation/zipball/db0ba1e85280d8ff11e38d53c70f8814d4d740f5",
+                "reference": "db0ba1e85280d8ff11e38d53c70f8814d4d740f5",
                 "shasum": ""
             },
             "require": {
                 "php": ">=7.1.3",
                 "symfony/polyfill-mbstring": "~1.0",
+                "symfony/polyfill-php80": "^1.16",
                 "symfony/translation-contracts": "^1.1.6|^2"
             },
             "conflict": {
@@ -5993,10 +6845,10 @@
                 "symfony/yaml": "<3.4"
             },
             "provide": {
-                "symfony/translation-implementation": "1.0"
+                "symfony/translation-implementation": "1.0|2.0"
             },
             "require-dev": {
-                "psr/log": "~1.0",
+                "psr/log": "^1|^2|^3",
                 "symfony/config": "^3.4|^4.0|^5.0",
                 "symfony/console": "^3.4|^4.0|^5.0",
                 "symfony/dependency-injection": "^3.4|^4.0|^5.0",
@@ -6012,11 +6864,6 @@
                 "symfony/yaml": ""
             },
             "type": "library",
-            "extra": {
-                "branch-alias": {
-                    "dev-master": "4.4-dev"
-                }
-            },
             "autoload": {
                 "psr-4": {
                     "Symfony\\Component\\Translation\\": ""
@@ -6039,22 +6886,39 @@
                     "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "Symfony Translation Component",
+            "description": "Provides tools to internationalize your application",
             "homepage": "https://symfony.com",
-            "time": "2020-05-30T20:06:45+00:00"
+            "support": {
+                "source": "https://github.com/symfony/translation/tree/v4.4.32"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-08-26T05:57:13+00:00"
         },
         {
             "name": "symfony/translation-contracts",
-            "version": "v2.1.2",
+            "version": "v2.4.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/translation-contracts.git",
-                "reference": "e5ca07c8f817f865f618aa072c2fe8e0e637340e"
+                "reference": "95c812666f3e91db75385749fe219c5e494c7f95"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e5ca07c8f817f865f618aa072c2fe8e0e637340e",
-                "reference": "e5ca07c8f817f865f618aa072c2fe8e0e637340e",
+                "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/95c812666f3e91db75385749fe219c5e494c7f95",
+                "reference": "95c812666f3e91db75385749fe219c5e494c7f95",
                 "shasum": ""
             },
             "require": {
@@ -6066,7 +6930,11 @@
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-master": "2.1-dev"
+                    "dev-main": "2.4-dev"
+                },
+                "thanks": {
+                    "name": "symfony/contracts",
+                    "url": "https://github.com/symfony/contracts"
                 }
             },
             "autoload": {
@@ -6098,27 +6966,44 @@
                 "interoperability",
                 "standards"
             ],
-            "time": "2020-05-20T17:43:50+00:00"
+            "support": {
+                "source": "https://github.com/symfony/translation-contracts/tree/v2.4.0"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-03-23T23:28:01+00:00"
         },
         {
             "name": "symfony/var-dumper",
-            "version": "v4.4.10",
+            "version": "v4.4.31",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/var-dumper.git",
-                "reference": "56b3aa5eab0ac6720dcd559fd1d590ce301594ac"
+                "reference": "1f12cc0c2e880a5f39575c19af81438464717839"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/var-dumper/zipball/56b3aa5eab0ac6720dcd559fd1d590ce301594ac",
-                "reference": "56b3aa5eab0ac6720dcd559fd1d590ce301594ac",
+                "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1f12cc0c2e880a5f39575c19af81438464717839",
+                "reference": "1f12cc0c2e880a5f39575c19af81438464717839",
                 "shasum": ""
             },
             "require": {
                 "php": ">=7.1.3",
                 "symfony/polyfill-mbstring": "~1.0",
                 "symfony/polyfill-php72": "~1.5",
-                "symfony/polyfill-php80": "^1.15"
+                "symfony/polyfill-php80": "^1.16"
             },
             "conflict": {
                 "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
@@ -6128,7 +7013,7 @@
                 "ext-iconv": "*",
                 "symfony/console": "^3.4|^4.0|^5.0",
                 "symfony/process": "^4.4|^5.0",
-                "twig/twig": "^1.34|^2.4|^3.0"
+                "twig/twig": "^1.43|^2.13|^3.0.4"
             },
             "suggest": {
                 "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
@@ -6139,11 +7024,6 @@
                 "Resources/bin/var-dump-server"
             ],
             "type": "library",
-            "extra": {
-                "branch-alias": {
-                    "dev-master": "4.4-dev"
-                }
-            },
             "autoload": {
                 "files": [
                     "Resources/functions/dump.php"
@@ -6169,13 +7049,30 @@
                     "homepage": "https://symfony.com/contributors"
                 }
             ],
-            "description": "Symfony mechanism for exploring and dumping PHP variables",
+            "description": "Provides mechanisms for walking through any arbitrary PHP variable",
             "homepage": "https://symfony.com",
             "keywords": [
                 "debug",
                 "dump"
             ],
-            "time": "2020-05-30T20:06:45+00:00"
+            "support": {
+                "source": "https://github.com/symfony/var-dumper/tree/v4.4.31"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-09-24T15:30:11+00:00"
         },
         {
             "name": "symfony/var-exporter",
@@ -6299,26 +7196,26 @@
         },
         {
             "name": "tijsverkoyen/css-to-inline-styles",
-            "version": "2.2.2",
+            "version": "2.2.3",
             "source": {
                 "type": "git",
                 "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
-                "reference": "dda2ee426acd6d801d5b7fd1001cde9b5f790e15"
+                "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/dda2ee426acd6d801d5b7fd1001cde9b5f790e15",
-                "reference": "dda2ee426acd6d801d5b7fd1001cde9b5f790e15",
+                "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
+                "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
                 "shasum": ""
             },
             "require": {
                 "ext-dom": "*",
                 "ext-libxml": "*",
-                "php": "^5.5 || ^7.0",
+                "php": "^5.5 || ^7.0 || ^8.0",
                 "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
             },
             "require-dev": {
-                "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
+                "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
             },
             "type": "library",
             "extra": {
@@ -6344,7 +7241,11 @@
             ],
             "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
             "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
-            "time": "2019-10-24T08:53:34+00:00"
+            "support": {
+                "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
+                "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
+            },
+            "time": "2020-07-13T06:12:54+00:00"
         },
         {
             "name": "torann/geoip",
@@ -6421,27 +7322,27 @@
         },
         {
             "name": "vlucas/phpdotenv",
-            "version": "v3.6.6",
+            "version": "v3.6.9",
             "source": {
                 "type": "git",
                 "url": "https://github.com/vlucas/phpdotenv.git",
-                "reference": "4669484ccbc38fe7c4e0c50456778f2010566aad"
+                "reference": "a1bf4c9853d90ade427b4efe35355fc41b3d6988"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/4669484ccbc38fe7c4e0c50456778f2010566aad",
-                "reference": "4669484ccbc38fe7c4e0c50456778f2010566aad",
+                "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a1bf4c9853d90ade427b4efe35355fc41b3d6988",
+                "reference": "a1bf4c9853d90ade427b4efe35355fc41b3d6988",
                 "shasum": ""
             },
             "require": {
                 "php": "^5.4 || ^7.0 || ^8.0",
                 "phpoption/phpoption": "^1.5.2",
-                "symfony/polyfill-ctype": "^1.16"
+                "symfony/polyfill-ctype": "^1.17"
             },
             "require-dev": {
                 "ext-filter": "*",
                 "ext-pcre": "*",
-                "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0"
+                "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
             },
             "suggest": {
                 "ext-filter": "Required to use the boolean validator.",
@@ -6465,13 +7366,11 @@
             "authors": [
                 {
                     "name": "Graham Campbell",
-                    "email": "graham@alt-three.com",
-                    "homepage": "https://gjcampbell.co.uk/"
+                    "email": "hello@gjcampbell.co.uk"
                 },
                 {
                     "name": "Vance Lucas",
-                    "email": "vance@vancelucas.com",
-                    "homepage": "https://vancelucas.com/"
+                    "email": "vance@vancelucas.com"
                 }
             ],
             "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
@@ -6480,7 +7379,21 @@
                 "env",
                 "environment"
             ],
-            "time": "2020-06-02T14:08:54+00:00"
+            "support": {
+                "issues": "https://github.com/vlucas/phpdotenv/issues",
+                "source": "https://github.com/vlucas/phpdotenv/tree/v3.6.9"
+            },
+            "funding": [
+                {
+                    "url": "https://github.com/GrahamCampbell",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2021-10-02T19:07:56+00:00"
         },
         {
             "name": "windwalker/renderer",
@@ -9277,25 +10190,25 @@
         },
         {
             "name": "phpdocumentor/reflection-common",
-            "version": "2.1.0",
+            "version": "2.2.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
-                "reference": "6568f4687e5b41b054365f9ae03fcb1ed5f2069b"
+                "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/6568f4687e5b41b054365f9ae03fcb1ed5f2069b",
-                "reference": "6568f4687e5b41b054365f9ae03fcb1ed5f2069b",
+                "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
+                "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
                 "shasum": ""
             },
             "require": {
-                "php": ">=7.1"
+                "php": "^7.2 || ^8.0"
             },
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-master": "2.x-dev"
+                    "dev-2.x": "2.x-dev"
                 }
             },
             "autoload": {
@@ -9322,32 +10235,35 @@
                 "reflection",
                 "static analysis"
             ],
-            "time": "2020-04-27T09:25:28+00:00"
+            "support": {
+                "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
+                "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
+            },
+            "time": "2020-06-27T09:03:43+00:00"
         },
         {
             "name": "phpdocumentor/reflection-docblock",
-            "version": "5.1.0",
+            "version": "5.2.2",
             "source": {
                 "type": "git",
                 "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
-                "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e"
+                "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e",
-                "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e",
+                "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
+                "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
                 "shasum": ""
             },
             "require": {
-                "ext-filter": "^7.1",
-                "php": "^7.2",
-                "phpdocumentor/reflection-common": "^2.0",
-                "phpdocumentor/type-resolver": "^1.0",
-                "webmozart/assert": "^1"
+                "ext-filter": "*",
+                "php": "^7.2 || ^8.0",
+                "phpdocumentor/reflection-common": "^2.2",
+                "phpdocumentor/type-resolver": "^1.3",
+                "webmozart/assert": "^1.9.1"
             },
             "require-dev": {
-                "doctrine/instantiator": "^1",
-                "mockery/mockery": "^1"
+                "mockery/mockery": "~1.3.2"
             },
             "type": "library",
             "extra": {
@@ -9375,29 +10291,33 @@
                 }
             ],
             "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
-            "time": "2020-02-22T12:28:44+00:00"
+            "support": {
+                "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
+                "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
+            },
+            "time": "2020-09-03T19:13:55+00:00"
         },
         {
             "name": "phpdocumentor/type-resolver",
-            "version": "1.2.0",
+            "version": "1.5.1",
             "source": {
                 "type": "git",
                 "url": "https://github.com/phpDocumentor/TypeResolver.git",
-                "reference": "30441f2752e493c639526b215ed81d54f369d693"
+                "reference": "a12f7e301eb7258bb68acd89d4aefa05c2906cae"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/30441f2752e493c639526b215ed81d54f369d693",
-                "reference": "30441f2752e493c639526b215ed81d54f369d693",
+                "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/a12f7e301eb7258bb68acd89d4aefa05c2906cae",
+                "reference": "a12f7e301eb7258bb68acd89d4aefa05c2906cae",
                 "shasum": ""
             },
             "require": {
-                "php": "^7.2",
+                "php": "^7.2 || ^8.0",
                 "phpdocumentor/reflection-common": "^2.0"
             },
             "require-dev": {
-                "ext-tokenizer": "^7.2",
-                "mockery/mockery": "~1"
+                "ext-tokenizer": "*",
+                "psalm/phar": "^4.8"
             },
             "type": "library",
             "extra": {
@@ -9421,7 +10341,11 @@
                 }
             ],
             "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
-            "time": "2020-06-19T20:22:09+00:00"
+            "support": {
+                "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
+                "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.5.1"
+            },
+            "time": "2021-10-02T14:08:47+00:00"
         },
         {
             "name": "phpro/grumphp",
@@ -11191,52 +12115,6 @@
             "homepage": "https://symfony.com",
             "time": "2020-10-01T12:14:45+00:00"
         },
-        {
-            "name": "symfony/deprecation-contracts",
-            "version": "v2.1.2",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/symfony/deprecation-contracts.git",
-                "reference": "dd99cb3a0aff6cadd2a8d7d7ed72c2161e218337"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/dd99cb3a0aff6cadd2a8d7d7ed72c2161e218337",
-                "reference": "dd99cb3a0aff6cadd2a8d7d7ed72c2161e218337",
-                "shasum": ""
-            },
-            "require": {
-                "php": ">=7.1"
-            },
-            "type": "library",
-            "extra": {
-                "branch-alias": {
-                    "dev-master": "2.1-dev"
-                }
-            },
-            "autoload": {
-                "files": [
-                    "function.php"
-                ]
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "Nicolas Grekas",
-                    "email": "p@tchwork.com"
-                },
-                {
-                    "name": "Symfony Community",
-                    "homepage": "https://symfony.com/contributors"
-                }
-            ],
-            "description": "A generic function and convention to trigger deprecation notices",
-            "homepage": "https://symfony.com",
-            "time": "2020-05-27T08:34:37+00:00"
-        },
         {
             "name": "symfony/dotenv",
             "version": "v5.1.7",
@@ -11403,43 +12281,31 @@
         },
         {
             "name": "symfony/polyfill-php70",
-            "version": "v1.17.1",
+            "version": "v1.20.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/polyfill-php70.git",
-                "reference": "471b096aede7025bace8eb356b9ac801aaba7e2d"
+                "reference": "5f03a781d984aae42cebd18e7912fa80f02ee644"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/471b096aede7025bace8eb356b9ac801aaba7e2d",
-                "reference": "471b096aede7025bace8eb356b9ac801aaba7e2d",
+                "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/5f03a781d984aae42cebd18e7912fa80f02ee644",
+                "reference": "5f03a781d984aae42cebd18e7912fa80f02ee644",
                 "shasum": ""
             },
             "require": {
-                "paragonie/random_compat": "~1.0|~2.0|~9.99",
-                "php": ">=5.3.3"
+                "php": ">=7.1"
             },
-            "type": "library",
+            "type": "metapackage",
             "extra": {
                 "branch-alias": {
-                    "dev-master": "1.17-dev"
+                    "dev-main": "1.20-dev"
                 },
                 "thanks": {
                     "name": "symfony/polyfill",
                     "url": "https://github.com/symfony/polyfill"
                 }
             },
-            "autoload": {
-                "psr-4": {
-                    "Symfony\\Polyfill\\Php70\\": ""
-                },
-                "files": [
-                    "bootstrap.php"
-                ],
-                "classmap": [
-                    "Resources/stubs"
-                ]
-            },
             "notification-url": "https://packagist.org/downloads/",
             "license": [
                 "MIT"
@@ -11462,7 +12328,24 @@
                 "portable",
                 "shim"
             ],
-            "time": "2020-06-06T08:46:27+00:00"
+            "support": {
+                "source": "https://github.com/symfony/polyfill-php70/tree/v1.20.0"
+            },
+            "funding": [
+                {
+                    "url": "https://symfony.com/sponsor",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://github.com/fabpot",
+                    "type": "github"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2020-10-23T14:02:19+00:00"
         },
         {
             "name": "symfony/stopwatch",
@@ -11556,30 +12439,35 @@
         },
         {
             "name": "webmozart/assert",
-            "version": "1.9.0",
+            "version": "1.10.0",
             "source": {
                 "type": "git",
-                "url": "https://github.com/webmozart/assert.git",
-                "reference": "9dc4f203e36f2b486149058bade43c851dd97451"
+                "url": "https://github.com/webmozarts/assert.git",
+                "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/webmozart/assert/zipball/9dc4f203e36f2b486149058bade43c851dd97451",
-                "reference": "9dc4f203e36f2b486149058bade43c851dd97451",
+                "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
+                "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
                 "shasum": ""
             },
             "require": {
-                "php": "^5.3.3 || ^7.0",
+                "php": "^7.2 || ^8.0",
                 "symfony/polyfill-ctype": "^1.8"
             },
             "conflict": {
                 "phpstan/phpstan": "<0.12.20",
-                "vimeo/psalm": "<3.9.1"
+                "vimeo/psalm": "<4.6.1 || 4.6.2"
             },
             "require-dev": {
-                "phpunit/phpunit": "^4.8.36 || ^7.5.13"
+                "phpunit/phpunit": "^8.5.13"
             },
             "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.10-dev"
+                }
+            },
             "autoload": {
                 "psr-4": {
                     "Webmozart\\Assert\\": "src/"
@@ -11601,7 +12489,11 @@
                 "check",
                 "validate"
             ],
-            "time": "2020-06-16T10:16:42+00:00"
+            "support": {
+                "issues": "https://github.com/webmozarts/assert/issues",
+                "source": "https://github.com/webmozarts/assert/tree/1.10.0"
+            },
+            "time": "2021-03-09T10:59:23+00:00"
         }
     ],
     "aliases": [],
@@ -11612,7 +12504,8 @@
     "prefer-stable": true,
     "prefer-lowest": false,
     "platform": {
-        "php": "^7.2"
+        "php": "^7.3"
     },
-    "platform-dev": []
+    "platform-dev": [],
+    "plugin-api-version": "2.1.0"
 }
diff --git a/database/seeds/Traits/TruncateTable.php b/database/seeds/Traits/TruncateTable.php
index 668dc36b..a823d123 100755
--- a/database/seeds/Traits/TruncateTable.php
+++ b/database/seeds/Traits/TruncateTable.php
@@ -11,7 +11,6 @@ trait TruncateTable
 {
     /**
      * @param $table
-     *
      * @return bool
      */
     protected function truncate($table)
@@ -31,7 +30,7 @@ protected function truncate($table)
     }
 
     /**
-     * @param array $tables
+     * @param  array  $tables
      */
     protected function truncateMultiple(array $tables)
     {
diff --git a/tests/Feature/Frontend/UpdateUserAccountTest.php b/tests/Feature/Frontend/UpdateUserAccountTest.php
index 7eb61e0d..b1298bf5 100755
--- a/tests/Feature/Frontend/UpdateUserAccountTest.php
+++ b/tests/Feature/Frontend/UpdateUserAccountTest.php
@@ -16,7 +16,8 @@ class UpdateUserAccountTest extends TestCase
 
     /**
      * helper method for valid user data with option to override.
-     * @param array $userData
+     *
+     * @param  array  $userData
      * @return array
      */
     protected function getValidUserData($userData = [])
diff --git a/tests/Feature/Frontend/UserRegistrationTest.php b/tests/Feature/Frontend/UserRegistrationTest.php
index c822e3f3..592e3da3 100755
--- a/tests/Feature/Frontend/UserRegistrationTest.php
+++ b/tests/Feature/Frontend/UserRegistrationTest.php
@@ -21,7 +21,8 @@ class UserRegistrationTest extends TestCase
 
     /**
      * Helper function for registering a user.
-     * @param array $userData
+     *
+     * @param  array  $userData
      * @return \Illuminate\Foundation\Testing\TestResponse
      */
     protected function registerUser($userData = [], $roleData = [])
diff --git a/tests/TestCase.php b/tests/TestCase.php
index 14f82a60..fb748f63 100755
--- a/tests/TestCase.php
+++ b/tests/TestCase.php
@@ -46,8 +46,7 @@ protected function getAdminRole()
     /**
      * Create an administrator.
      *
-     * @param array $attributes
-     *
+     * @param  array  $attributes
      * @return mixed
      */
     protected function createAdmin(array $attributes = [])
@@ -62,8 +61,7 @@ protected function createAdmin(array $attributes = [])
     /**
      * Login the given administrator or create the first if none supplied.
      *
-     * @param bool $admin
-     *
+     * @param  bool  $admin
      * @return bool|mixed
      */
     protected function loginAsAdmin($admin = false)