Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 234b3a8

Browse files
committed
Fix conflicts.
2 parents a88a1b8 + 5531e48 commit 234b3a8

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"symfony/http-kernel": "2.5.*",
3434
"symfony/process": "2.5.*",
3535
"symfony/routing": "2.5.*",
36-
"symfony/security": "2.5.*",
36+
"symfony/security-core": "2.5.*",
3737
"symfony/translation": "2.5.*"
3838
},
3939
"replace": {

src/Illuminate/Container/Container.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ protected function getConcrete($abstract)
476476
*/
477477
protected function missingLeadingSlash($abstract)
478478
{
479-
return is_string($abstract) && ! starts_with($abstract, '\\');
479+
return is_string($abstract) && strpos($abstract, '\\') !== 0;
480480
}
481481

482482
/**

src/Illuminate/Encryption/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"require": {
1111
"php": ">=5.4.0",
1212
"illuminate/support": "4.2.*",
13-
"symfony/security": "2.5.*"
13+
"symfony/security-core": "2.5.*"
1414
},
1515
"require-dev": {
1616
"phpunit/phpunit": "4.0.*"

0 commit comments

Comments
 (0)