Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
syncEnrollments
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Yeray Santana Hualde
syncEnrollments
Commits
1a5d4250
Commit
1a5d4250
authored
Apr 10, 2012
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Plain Diff
fix conflicts.
parents
8a687053
bcca8be0
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
30 additions
and
14 deletions
+30
-14
artisan
artisan
+1
-1
autoloader.php
laravel/autoloader.php
+2
-0
resolver.php
laravel/cli/tasks/migrate/resolver.php
+1
-1
model.php
laravel/database/eloquent/model.php
+1
-1
has_many_and_belongs_to.php
...tabase/eloquent/relationships/has_many_and_belongs_to.php
+1
-1
changes.md
laravel/documentation/changes.md
+14
-0
validator.php
laravel/validator.php
+8
-8
paths.php
paths.php
+1
-1
index.php
public/index.php
+1
-1
No files found.
artisan
View file @
1a5d4250
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
* Laravel - A PHP Framework For Web Artisans
* Laravel - A PHP Framework For Web Artisans
*
*
* @package Laravel
* @package Laravel
* @version 3.1.
6
* @version 3.1.
7
* @author Taylor Otwell <taylorotwell@gmail.com>
* @author Taylor Otwell <taylorotwell@gmail.com>
* @link http://laravel.com
* @link http://laravel.com
*/
*/
...
...
laravel/autoloader.php
View file @
1a5d4250
...
@@ -61,6 +61,8 @@ class Autoloader {
...
@@ -61,6 +61,8 @@ class Autoloader {
elseif
(
isset
(
static
::
$mappings
[
$class
]))
elseif
(
isset
(
static
::
$mappings
[
$class
]))
{
{
require
static
::
$mappings
[
$class
];
require
static
::
$mappings
[
$class
];
return
;
}
}
// If the class namespace is mapped to a directory, we will load the
// If the class namespace is mapped to a directory, we will load the
...
...
laravel/cli/tasks/migrate/resolver.php
View file @
1a5d4250
...
@@ -116,7 +116,7 @@ class Resolver {
...
@@ -116,7 +116,7 @@ class Resolver {
// naming collisions with other bundle's migrations.
// naming collisions with other bundle's migrations.
$prefix
=
Bundle
::
class_prefix
(
$bundle
);
$prefix
=
Bundle
::
class_prefix
(
$bundle
);
$class
=
$prefix
.
substr
(
$name
,
18
);
$class
=
$prefix
.
\Laravel\Str
::
classify
(
substr
(
$name
,
18
)
);
$migration
=
new
$class
;
$migration
=
new
$class
;
...
...
laravel/database/eloquent/model.php
View file @
1a5d4250
...
@@ -472,7 +472,7 @@ abstract class Model {
...
@@ -472,7 +472,7 @@ abstract class Model {
*/
*/
public
function
table
()
public
function
table
()
{
{
return
static
::
$table
?:
strtolower
(
Str
::
plural
(
basename
(
get_class
(
$this
)
)));
return
static
::
$table
?:
strtolower
(
Str
::
plural
(
class_basename
(
$this
)));
}
}
/**
/**
...
...
laravel/database/eloquent/relationships/has_many_and_belongs_to.php
View file @
1a5d4250
...
@@ -21,7 +21,7 @@ class Has_Many_And_Belongs_To extends Relationship {
...
@@ -21,7 +21,7 @@ class Has_Many_And_Belongs_To extends Relationship {
protected
$other
;
protected
$other
;
/**
/**
* The columns on the joining t
ba
le that should be fetched.
* The columns on the joining t
ab
le that should be fetched.
*
*
* @var array
* @var array
*/
*/
...
...
laravel/documentation/changes.md
View file @
1a5d4250
...
@@ -4,6 +4,8 @@
...
@@ -4,6 +4,8 @@
-
[
Laravel 3.2
](
#3.2
)
-
[
Laravel 3.2
](
#3.2
)
-
[
Upgrading From 3.1
](
#upgrade-3.2
)
-
[
Upgrading From 3.1
](
#upgrade-3.2
)
-
[
Laravel 3.1.7
](
#3.1.7
)
-
[
Upgrading From 3.1.6
](
#upgrade-3.1.7
)
-
[
Laravel 3.1.6
](
#3.1.6
)
-
[
Laravel 3.1.6
](
#3.1.6
)
-
[
Upgrading From 3.1.5
](
#upgrade-3.1.6
)
-
[
Upgrading From 3.1.5
](
#upgrade-3.1.6
)
-
[
Laravel 3.1.5
](
#3.1.5
)
-
[
Laravel 3.1.5
](
#3.1.5
)
...
@@ -39,6 +41,18 @@
...
@@ -39,6 +41,18 @@
-
Replace the
**laravel**
folder.
-
Replace the
**laravel**
folder.
<a
name=
"3.1.7"
></a>
## Laravel 3.1.7
-
Fixes custom validation language line loading from bundles.
-
Fixes double-loading of classes when overriding the core.
-
Classify migration names.
<a
name=
"upgrade-3.1.7"
></a>
## Upgrading From 3.1.6
-
Replace the
**laravel**
folder.
<a
name=
"3.1.6"
></a>
<a
name=
"3.1.6"
></a>
## Laravel 3.1.6
## Laravel 3.1.6
...
...
laravel/validator.php
View file @
1a5d4250
...
@@ -692,7 +692,7 @@ class Validator {
...
@@ -692,7 +692,7 @@ class Validator {
{
{
return
$this
->
messages
[
$custom
];
return
$this
->
messages
[
$custom
];
}
}
elseif
(
Lang
::
has
(
$custom
=
"validation.custom.
{
$custom
}
"
,
$this
->
language
))
elseif
(
Lang
::
has
(
$custom
=
"
{
$bundle
}
validation.custom.
{
$custom
}
"
,
$this
->
language
))
{
{
return
Lang
::
line
(
$custom
)
->
get
(
$this
->
language
);
return
Lang
::
line
(
$custom
)
->
get
(
$this
->
language
);
}
}
...
...
paths.php
View file @
1a5d4250
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
* Laravel - A PHP Framework For Web Artisans
* Laravel - A PHP Framework For Web Artisans
*
*
* @package Laravel
* @package Laravel
* @version 3.1.
6
* @version 3.1.
7
* @author Taylor Otwell <taylorotwell@gmail.com>
* @author Taylor Otwell <taylorotwell@gmail.com>
* @link http://laravel.com
* @link http://laravel.com
*/
*/
...
...
public/index.php
View file @
1a5d4250
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
* Laravel - A PHP Framework For Web Artisans
* Laravel - A PHP Framework For Web Artisans
*
*
* @package Laravel
* @package Laravel
* @version 3.1.
6
* @version 3.1.
7
* @author Taylor Otwell <taylorotwell@gmail.com>
* @author Taylor Otwell <taylorotwell@gmail.com>
* @link http://laravel.com
* @link http://laravel.com
*/
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment