-
Notifications
You must be signed in to change notification settings - Fork 70
Laravel 5.3 Support #112
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Laravel 5.3 Support #112
Conversation
@@ -56,6 +57,9 @@ public function register() | |||
case false !== strpos($version, '5.2.'): | |||
$provider = new Laravel52Provider(); | |||
break; | |||
case false !== strpos($version, '5.3.'): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Spaces must be used to indent lines; tabs are not allowed
@@ -56,6 +57,9 @@ public function register() | |||
case false !== strpos($version, '5.2.'): | |||
$provider = new Laravel52Provider(); | |||
break; | |||
case false !== strpos($version, '5.3.'): | |||
$provider = new Laravel53Provider(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Spaces must be used to indent lines; tabs are not allowed
@@ -56,6 +57,9 @@ public function register() | |||
case false !== strpos($version, '5.2.'): | |||
$provider = new Laravel52Provider(); | |||
break; | |||
case false !== strpos($version, '5.3.'): | |||
$provider = new Laravel53Provider(); | |||
break; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Spaces must be used to indent lines; tabs are not allowed
Adding support for Laravel 5.3 as mentioned in #108