Skip to content
Snippets Groups Projects
Commit c603cce7 authored by Tomas Budvytis's avatar Tomas Budvytis
Browse files

Version upgrade

parent ce4be120
No related branches found
No related tags found
No related merge requests found
Showing
with 39 additions and 2 deletions
APP_ENV=dev
APP_KEY=
APP_DEBUG=true
APP_LOG_LEVEL=log
APP_URL=
SESSION_DOMAIN=
DB_CONNECTION=mysql
DB_HOST=
DB_PORT=
DB_DATABASE=
DB_USERNAME=
DB_PASSWORD=
BROADCAST_DRIVER=log
CACHE_DRIVER=file
SESSION_DRIVER=file
QUEUE_DRIVER=sync
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
MAIL_DRIVER=smtp
MAIL_HOST=localhost
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
PUSHER_APP_ID=
PUSHER_KEY=
PUSHER_SECRET=
\ No newline at end of file
.gitattributes 100644 → 100755
File mode changed from 100644 to 100755
.gitignore 100644 → 100755
File mode changed from 100644 to 100755
README.md 100644 → 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
ansible.yml 100644 → 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
...@@ -5,6 +5,7 @@ namespace App\Exceptions; ...@@ -5,6 +5,7 @@ namespace App\Exceptions;
use Exception; use Exception;
use Illuminate\Auth\AuthenticationException; use Illuminate\Auth\AuthenticationException;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use Throwable;
class Handler extends ExceptionHandler class Handler extends ExceptionHandler
{ {
...@@ -30,7 +31,7 @@ class Handler extends ExceptionHandler ...@@ -30,7 +31,7 @@ class Handler extends ExceptionHandler
* @param \Exception $exception * @param \Exception $exception
* @return void * @return void
*/ */
public function report(Exception $exception) public function report(Throwable $exception)
{ {
parent::report($exception); parent::report($exception);
} }
...@@ -42,7 +43,7 @@ class Handler extends ExceptionHandler ...@@ -42,7 +43,7 @@ class Handler extends ExceptionHandler
* @param \Exception $exception * @param \Exception $exception
* @return \Illuminate\Http\Response * @return \Illuminate\Http\Response
*/ */
public function render($request, Exception $exception) public function render($request, Throwable $exception)
{ {
return parent::render($request, $exception); return parent::render($request, $exception);
} }
......
...@@ -15,6 +15,7 @@ class AttrReleaseTestController extends Controller ...@@ -15,6 +15,7 @@ class AttrReleaseTestController extends Controller
{ {
if ($request->has('sps')){ if ($request->has('sps')){
$sps = $request->input('sps'); $sps = $request->input('sps');
// dd($sps);
$redirect_url = "https://".parse_url($sps[0], PHP_URL_HOST)."/sp"; $redirect_url = "https://".parse_url($sps[0], PHP_URL_HOST)."/sp";
// Store the other SPs to checked in the session so that they can be retrieved later on // Store the other SPs to checked in the session so that they can be retrieved later on
$request->session()->put('test_allowed', true); $request->session()->put('test_allowed', true);
......
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment