Skip to content
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

Closed
wants to merge 1 commit into from
Closed

Laravel 5.3 Support #112

wants to merge 1 commit into from

Conversation

mkriegeskorte
Copy link

Adding support for Laravel 5.3 as mentioned in #108

@@ -56,6 +57,9 @@ public function register()
case false !== strpos($version, '5.2.'):
$provider = new Laravel52Provider();
break;
case false !== strpos($version, '5.3.'):

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();

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;

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants