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
eaaac620
Commit
eaaac620
authored
Jun 17, 2011
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactoring System\DB\Eloquent.
parent
8c0dfffa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
2 deletions
+16
-2
eloquent.php
system/db/eloquent.php
+16
-2
No files found.
system/db/eloquent.php
View file @
eaaac620
...
@@ -75,6 +75,20 @@ abstract class Eloquent {
...
@@ -75,6 +75,20 @@ abstract class Eloquent {
*/
*/
public
$query
;
public
$query
;
/**
* Create a new Eloquent model instance.
*
* @param array $attributes
* @return void
*/
public
function
__construct
(
$attributes
=
array
())
{
foreach
(
$attributes
as
$key
=>
$value
)
{
$this
->
$key
=
$value
;
}
}
/**
/**
* Get the table name for a model.
* Get the table name for a model.
*
*
...
@@ -272,12 +286,12 @@ abstract class Eloquent {
...
@@ -272,12 +286,12 @@ abstract class Eloquent {
//
//
// This is the same convention as has_one and has_many.
// This is the same convention as has_one and has_many.
// -----------------------------------------------------
// -----------------------------------------------------
$this
->
relating_key
=
$this
->
relating_table
.
'.'
.
Str
::
lower
(
get_class
(
$this
))
.
'_id'
;
$this
->
relating_key
=
Str
::
lower
(
get_class
(
$this
))
.
'_id'
;
return
static
::
make
(
$model
)
return
static
::
make
(
$model
)
->
select
(
static
::
table
(
$model
)
.
'.*'
)
->
select
(
static
::
table
(
$model
)
.
'.*'
)
->
join
(
$this
->
relating_table
,
static
::
table
(
$model
)
.
'.id'
,
'='
,
$this
->
relating_table
.
'.'
.
Str
::
lower
(
$model
)
.
'_id'
)
->
join
(
$this
->
relating_table
,
static
::
table
(
$model
)
.
'.id'
,
'='
,
$this
->
relating_table
.
'.'
.
Str
::
lower
(
$model
)
.
'_id'
)
->
where
(
$this
->
relating_key
,
'='
,
$this
->
id
);
->
where
(
$this
->
relating_
table
.
'.'
.
$this
->
relating_
key
,
'='
,
$this
->
id
);
}
}
/**
/**
...
...
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