Completed
Pull Request — 5.1 (#144)
by
unknown
04:21
created
src/Relationships/MorphTo.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -163,7 +163,7 @@
 block discarded – undo
163 163
     {
164 164
         $foreign = $this->foreignKey;
165 165
 
166
-        return BaseCollection::make($this->dictionary[$type])->map(function ($entities) use ($foreign) {
166
+        return BaseCollection::make($this->dictionary[$type])->map(function($entities) use ($foreign) {
167 167
             return head($entities)->{$foreign};
168 168
 
169 169
         })->unique();
Please login to merge, or discard this patch.
Indentation   +217 added lines, -217 removed lines patch added patch discarded remove patch
@@ -8,221 +8,221 @@
 block discarded – undo
8 8
 
9 9
 class MorphTo extends BelongsTo
10 10
 {
11
-    /**
12
-     * The type of the polymorphic relation.
13
-     *
14
-     * @var string
15
-     */
16
-    protected $morphType;
17
-
18
-    /**
19
-     * The entities whose relations are being eager loaded.
20
-     *
21
-     * @var EntityCollection
22
-     */
23
-    protected $entities;
24
-
25
-    /**
26
-     * All of the models keyed by ID.
27
-     *
28
-     * @var array
29
-     */
30
-    protected $dictionary = [];
31
-
32
-    /**
33
-     * Indicates if soft-deleted model instances should be fetched.
34
-     *
35
-     * @var bool
36
-     */
37
-    protected $withTrashed = false;
38
-
39
-    /**
40
-     * Indicate if the parent entity hold the key for the relation.
41
-     *
42
-     * @var boolean
43
-     */
44
-    protected static $ownForeignKey = true;
45
-
46
-    /**
47
-     * Create a new belongs to relationship instance.
48
-     *
49
-     * @param Mapper                 $mapper
50
-     * @param \Analogue\ORM\Mappable $parent
51
-     * @param string                 $foreignKey
52
-     * @param string                 $otherKey
53
-     * @param string                 $type
54
-     * @param string                 $relation
55
-     */
56
-    public function __construct(Mapper $mapper, $parent, $foreignKey, $otherKey, $type, $relation)
57
-    {
58
-        $this->morphType = $type;
59
-
60
-        parent::__construct($mapper, $parent, $foreignKey, $otherKey, $relation);
61
-    }
62
-
63
-    /**
64
-     * Set the constraints for an eager load of the relation.
65
-     *
66
-     * @param  array $entities
67
-     * @return void
68
-     */
69
-    public function addEagerConstraints(array $entities)
70
-    {
71
-        $this->buildDictionary($this->entities = EntityCollection::make($entities));
72
-    }
73
-
74
-    /**
75
-     * Build a dictionary with the entities
76
-     *
77
-     * @param  EntityCollection $entities
78
-     * @return void
79
-     */
80
-    protected function buildDictionary(EntityCollection $entities)
81
-    {
82
-        foreach ($entities as $entity) {
83
-            if ($entity->getEntityAttribute($this->morphType)) {
84
-                $foreign = $this->foreignKey;
85
-                $foreign = $this->relatedMap->getAttributeNameForColumn($foreign);
86
-                $this->dictionary[$entity->getEntityAttribute($this->morphType)][$entity->getEntityAttribute($foreign)][] = $entity;
87
-            }
88
-        }
89
-    }
90
-
91
-    /**
92
-     * Match the eagerly loaded results to their parents.
93
-     *
94
-     * @param  array            $entities
95
-     * @param  EntityCollection $results
96
-     * @param  string           $relation
97
-     * @return array
98
-     */
99
-    public function match(array $entities, EntityCollection $results, $relation)
100
-    {
101
-        return $entities;
102
-    }
103
-
104
-    /**
105
-     * Get the results of the relationship.
106
-     *
107
-     * @throws \Analogue\ORM\Exceptions\MappingException
108
-     * @return EntityCollection
109
-     */
110
-    public function getEager()
111
-    {
112
-        foreach (array_keys($this->dictionary) as $type) {
113
-            $this->matchToMorphParents($type, $this->getResultsByType($type));
114
-        }
115
-
116
-        return $this->entities;
117
-    }
118
-
119
-    /**
120
-     * Match the results for a given type to their parents.
121
-     *
122
-     * @param  string           $type
123
-     * @param  EntityCollection $results
124
-     * @return void
125
-     */
126
-    protected function matchToMorphParents($type, EntityCollection $results)
127
-    {
128
-        $mapper = $this->relatedMapper->getManager()->mapper($type);
129
-        $keyName = $mapper->getEntityMap()->getKeyName();
130
-
131
-        foreach ($results as $result) {
132
-            $key = $result->{$keyName};
133
-
134
-            if (isset($this->dictionary[$type][$key])) {
135
-                foreach ($this->dictionary[$type][$key] as $entity) {
136
-                    $entity->setEntityAttribute($this->relation, $result);
137
-                }
138
-            }
139
-        }
140
-    }
141
-
142
-    /**
143
-     * Get all of the relation results for a type.
144
-     *
145
-     * @param  string $type
146
-     * @throws \Analogue\ORM\Exceptions\MappingException
147
-     * @return EntityCollection
148
-     */
149
-    protected function getResultsByType($type)
150
-    {
151
-        $mapper = $this->relatedMapper->getManager()->mapper($type);
152
-
153
-        $key = $mapper->getEntityMap()->getKeyName();
154
-
155
-        $query = $mapper->getQuery();
156
-
157
-        return $query->whereIn($key, $this->gatherKeysByType($type)->all())->get();
158
-    }
159
-
160
-    /**
161
-     * Gather all of the foreign keys for a given type.
162
-     *
163
-     * @param  string $type
164
-     * @return BaseCollection
165
-     */
166
-    protected function gatherKeysByType($type)
167
-    {
168
-        $foreign = $this->foreignKey;
169
-
170
-        return BaseCollection::make($this->dictionary[$type])->map(function ($entities) use ($foreign) {
171
-            return head($entities)->{$foreign};
172
-
173
-        })->unique();
174
-    }
175
-
176
-    /**
177
-     * Associate the model instance to the given parent.
178
-     *
179
-     * @param  mixed $entity
180
-     * @return void
181
-     */
182
-    public function associate($entity)
183
-    {
184
-        // The Mapper will retrieve this association within the object model, we won't be using
185
-        // the foreign key attribute inside the parent Entity.
186
-        //
187
-        //$this->parent->setEntityAttribute($this->foreignKey, $entity->getEntityAttribute($this->otherKey));
188
-        //
189
-        // Instead, we'll just add the object to the Entity's attribute
190
-
191
-        $this->parent->setEntityAttribute($this->relation, $entity->getEntityObject());
192
-    }
193
-
194
-    /**
195
-     * Get the foreign key value pair for a related object
196
-     *
197
-     * @var mixed $related
198
-     *
199
-     * @return array
200
-     */
201
-    public function getForeignKeyValuePair($related)
202
-    {
203
-        $foreignKey = $this->getForeignKey();
204
-
205
-        if ($related) {
206
-            $wrapper = $this->factory->make($related);
207
-
208
-            $relatedKey = $this->relatedMap->getKeyName();
209
-
210
-            return [
211
-                $foreignKey => $wrapper->getEntityAttribute($relatedKey),
212
-                $this->morphType => $wrapper->getMap()->getMorphClass(),
213
-            ];
214
-        } else {
215
-            return [$foreignKey => null];
216
-        }
217
-    }
218
-
219
-    /**
220
-     * Get the dictionary used by the relationship.
221
-     *
222
-     * @return array
223
-     */
224
-    public function getDictionary()
225
-    {
226
-        return $this->dictionary;
227
-    }
11
+	/**
12
+	 * The type of the polymorphic relation.
13
+	 *
14
+	 * @var string
15
+	 */
16
+	protected $morphType;
17
+
18
+	/**
19
+	 * The entities whose relations are being eager loaded.
20
+	 *
21
+	 * @var EntityCollection
22
+	 */
23
+	protected $entities;
24
+
25
+	/**
26
+	 * All of the models keyed by ID.
27
+	 *
28
+	 * @var array
29
+	 */
30
+	protected $dictionary = [];
31
+
32
+	/**
33
+	 * Indicates if soft-deleted model instances should be fetched.
34
+	 *
35
+	 * @var bool
36
+	 */
37
+	protected $withTrashed = false;
38
+
39
+	/**
40
+	 * Indicate if the parent entity hold the key for the relation.
41
+	 *
42
+	 * @var boolean
43
+	 */
44
+	protected static $ownForeignKey = true;
45
+
46
+	/**
47
+	 * Create a new belongs to relationship instance.
48
+	 *
49
+	 * @param Mapper                 $mapper
50
+	 * @param \Analogue\ORM\Mappable $parent
51
+	 * @param string                 $foreignKey
52
+	 * @param string                 $otherKey
53
+	 * @param string                 $type
54
+	 * @param string                 $relation
55
+	 */
56
+	public function __construct(Mapper $mapper, $parent, $foreignKey, $otherKey, $type, $relation)
57
+	{
58
+		$this->morphType = $type;
59
+
60
+		parent::__construct($mapper, $parent, $foreignKey, $otherKey, $relation);
61
+	}
62
+
63
+	/**
64
+	 * Set the constraints for an eager load of the relation.
65
+	 *
66
+	 * @param  array $entities
67
+	 * @return void
68
+	 */
69
+	public function addEagerConstraints(array $entities)
70
+	{
71
+		$this->buildDictionary($this->entities = EntityCollection::make($entities));
72
+	}
73
+
74
+	/**
75
+	 * Build a dictionary with the entities
76
+	 *
77
+	 * @param  EntityCollection $entities
78
+	 * @return void
79
+	 */
80
+	protected function buildDictionary(EntityCollection $entities)
81
+	{
82
+		foreach ($entities as $entity) {
83
+			if ($entity->getEntityAttribute($this->morphType)) {
84
+				$foreign = $this->foreignKey;
85
+				$foreign = $this->relatedMap->getAttributeNameForColumn($foreign);
86
+				$this->dictionary[$entity->getEntityAttribute($this->morphType)][$entity->getEntityAttribute($foreign)][] = $entity;
87
+			}
88
+		}
89
+	}
90
+
91
+	/**
92
+	 * Match the eagerly loaded results to their parents.
93
+	 *
94
+	 * @param  array            $entities
95
+	 * @param  EntityCollection $results
96
+	 * @param  string           $relation
97
+	 * @return array
98
+	 */
99
+	public function match(array $entities, EntityCollection $results, $relation)
100
+	{
101
+		return $entities;
102
+	}
103
+
104
+	/**
105
+	 * Get the results of the relationship.
106
+	 *
107
+	 * @throws \Analogue\ORM\Exceptions\MappingException
108
+	 * @return EntityCollection
109
+	 */
110
+	public function getEager()
111
+	{
112
+		foreach (array_keys($this->dictionary) as $type) {
113
+			$this->matchToMorphParents($type, $this->getResultsByType($type));
114
+		}
115
+
116
+		return $this->entities;
117
+	}
118
+
119
+	/**
120
+	 * Match the results for a given type to their parents.
121
+	 *
122
+	 * @param  string           $type
123
+	 * @param  EntityCollection $results
124
+	 * @return void
125
+	 */
126
+	protected function matchToMorphParents($type, EntityCollection $results)
127
+	{
128
+		$mapper = $this->relatedMapper->getManager()->mapper($type);
129
+		$keyName = $mapper->getEntityMap()->getKeyName();
130
+
131
+		foreach ($results as $result) {
132
+			$key = $result->{$keyName};
133
+
134
+			if (isset($this->dictionary[$type][$key])) {
135
+				foreach ($this->dictionary[$type][$key] as $entity) {
136
+					$entity->setEntityAttribute($this->relation, $result);
137
+				}
138
+			}
139
+		}
140
+	}
141
+
142
+	/**
143
+	 * Get all of the relation results for a type.
144
+	 *
145
+	 * @param  string $type
146
+	 * @throws \Analogue\ORM\Exceptions\MappingException
147
+	 * @return EntityCollection
148
+	 */
149
+	protected function getResultsByType($type)
150
+	{
151
+		$mapper = $this->relatedMapper->getManager()->mapper($type);
152
+
153
+		$key = $mapper->getEntityMap()->getKeyName();
154
+
155
+		$query = $mapper->getQuery();
156
+
157
+		return $query->whereIn($key, $this->gatherKeysByType($type)->all())->get();
158
+	}
159
+
160
+	/**
161
+	 * Gather all of the foreign keys for a given type.
162
+	 *
163
+	 * @param  string $type
164
+	 * @return BaseCollection
165
+	 */
166
+	protected function gatherKeysByType($type)
167
+	{
168
+		$foreign = $this->foreignKey;
169
+
170
+		return BaseCollection::make($this->dictionary[$type])->map(function ($entities) use ($foreign) {
171
+			return head($entities)->{$foreign};
172
+
173
+		})->unique();
174
+	}
175
+
176
+	/**
177
+	 * Associate the model instance to the given parent.
178
+	 *
179
+	 * @param  mixed $entity
180
+	 * @return void
181
+	 */
182
+	public function associate($entity)
183
+	{
184
+		// The Mapper will retrieve this association within the object model, we won't be using
185
+		// the foreign key attribute inside the parent Entity.
186
+		//
187
+		//$this->parent->setEntityAttribute($this->foreignKey, $entity->getEntityAttribute($this->otherKey));
188
+		//
189
+		// Instead, we'll just add the object to the Entity's attribute
190
+
191
+		$this->parent->setEntityAttribute($this->relation, $entity->getEntityObject());
192
+	}
193
+
194
+	/**
195
+	 * Get the foreign key value pair for a related object
196
+	 *
197
+	 * @var mixed $related
198
+	 *
199
+	 * @return array
200
+	 */
201
+	public function getForeignKeyValuePair($related)
202
+	{
203
+		$foreignKey = $this->getForeignKey();
204
+
205
+		if ($related) {
206
+			$wrapper = $this->factory->make($related);
207
+
208
+			$relatedKey = $this->relatedMap->getKeyName();
209
+
210
+			return [
211
+				$foreignKey => $wrapper->getEntityAttribute($relatedKey),
212
+				$this->morphType => $wrapper->getMap()->getMorphClass(),
213
+			];
214
+		} else {
215
+			return [$foreignKey => null];
216
+		}
217
+	}
218
+
219
+	/**
220
+	 * Get the dictionary used by the relationship.
221
+	 *
222
+	 * @return array
223
+	 */
224
+	public function getDictionary()
225
+	{
226
+		return $this->dictionary;
227
+	}
228 228
 }
Please login to merge, or discard this patch.
src/System/InternallyMappable.php 1 patch
Indentation   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -3,38 +3,38 @@
 block discarded – undo
3 3
 interface InternallyMappable
4 4
 {
5 5
 
6
-    /**
7
-     * Set the object attribute raw values (hydration)
8
-     *
9
-     * @param array $attributes
10
-     */
11
-    public function setEntityAttributes(array $attributes);
6
+	/**
7
+	 * Set the object attribute raw values (hydration)
8
+	 *
9
+	 * @param array $attributes
10
+	 */
11
+	public function setEntityAttributes(array $attributes);
12 12
 
13
-    /**
14
-     * Get the raw object's values.
15
-     *
16
-     * @return array
17
-     */
18
-    public function getEntityAttributes();
13
+	/**
14
+	 * Get the raw object's values.
15
+	 *
16
+	 * @return array
17
+	 */
18
+	public function getEntityAttributes();
19 19
 
20
-    /**
21
-     * Set the raw entity attributes
22
-     * @param string $key
23
-     * @param string $value
24
-     */
25
-    public function setEntityAttribute($key, $value);
20
+	/**
21
+	 * Set the raw entity attributes
22
+	 * @param string $key
23
+	 * @param string $value
24
+	 */
25
+	public function setEntityAttribute($key, $value);
26 26
 
27
-    /**
28
-     * Return the entity's attribute
29
-     * @param  string $key
30
-     * @return mixed
31
-     */
32
-    public function getEntityAttribute($key);
27
+	/**
28
+	 * Return the entity's attribute
29
+	 * @param  string $key
30
+	 * @return mixed
31
+	 */
32
+	public function getEntityAttribute($key);
33 33
 
34
-    /**
35
-     * Does the entity posses the given attribute
36
-     * @param  string  $key
37
-     * @return boolean
38
-     */
39
-    public function hasAttribute($key);
34
+	/**
35
+	 * Does the entity posses the given attribute
36
+	 * @param  string  $key
37
+	 * @return boolean
38
+	 */
39
+	public function hasAttribute($key);
40 40
 }
Please login to merge, or discard this patch.
src/Plugins/SoftDeletes/SoftDeletingScope.php 3 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
      */
74 74
     protected function addWithTrashed(Query $query)
75 75
     {
76
-        $query->macro('withTrashed', function (Query $query) {
76
+        $query->macro('withTrashed', function(Query $query) {
77 77
             $this->remove($query);
78 78
 
79 79
             return $query;
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
      */
89 89
     protected function addOnlyTrashed(Query $query)
90 90
     {
91
-        $query->macro('onlyTrashed', function (Query $query) {
91
+        $query->macro('onlyTrashed', function(Query $query) {
92 92
             $this->remove($query);
93 93
 
94 94
             $query->getQuery()->whereNotNull($query->getMapper()->getEntityMap()->getQualifiedDeletedAtColumn());
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     /**
33 33
      * Remove the scope from the given Analogue query builder.
34 34
      *
35
-     * @param  mixed $query
35
+     * @param  Query $query
36 36
      * @return void
37 37
      */
38 38
     public function remove(Query $query)
Please login to merge, or discard this patch.
Indentation   +102 added lines, -102 removed lines patch added patch discarded remove patch
@@ -7,106 +7,106 @@
 block discarded – undo
7 7
 
8 8
 class SoftDeletingScope implements ScopeInterface
9 9
 {
10
-    /**
11
-     * All of the extensions to be added to the builder.
12
-     *
13
-     * @var array
14
-     */
15
-    protected $extensions = ['WithTrashed', 'OnlyTrashed'];
16
-
17
-    /**
18
-     * Apply the scope to a given Analogue query builder.
19
-     *
20
-     * @param  \Analogue\ORM\System\Query $query
21
-     * @return void
22
-     */
23
-    public function apply(Query $query)
24
-    {
25
-        $entityMap = $query->getMapper()->getEntityMap();
26
-
27
-        $query->whereNull($entityMap->getQualifiedDeletedAtColumn());
28
-
29
-        $this->extend($query);
30
-    }
31
-
32
-    /**
33
-     * Remove the scope from the given Analogue query builder.
34
-     *
35
-     * @param  mixed $query
36
-     * @return void
37
-     */
38
-    public function remove(Query $query)
39
-    {
40
-        $column = $query->getMapper()->getEntityMap()->getQualifiedDeletedAtColumn();
41
-
42
-        $query = $query->getQuery();
43
-
44
-        foreach ((array) $query->wheres as $key => $where) {
45
-            // If the where clause is a soft delete date constraint, we will remove it from
46
-            // the query and reset the keys on the wheres. This allows this developer to
47
-            // include deleted model in a relationship result set that is lazy loaded.
48
-            if ($this->isSoftDeleteConstraint($where, $column)) {
49
-                unset($query->wheres[$key]);
50
-
51
-                $query->wheres = array_values($query->wheres);
52
-            }
53
-        }
54
-    }
55
-
56
-    /**
57
-     * Extend the query builder with the needed functions.
58
-     *
59
-     * @param  \Analogue\ORM\System\Query $query
60
-     * @return void
61
-     */
62
-    public function extend(Query $query)
63
-    {
64
-        foreach ($this->extensions as $extension) {
65
-            $this->{"add{$extension}"}($query);
66
-        }
67
-    }
68
-
69
-    /**
70
-     * Add the with-trashed extension to the builder.
71
-     *
72
-     * @param  \Analogue\ORM\System\Query $query
73
-     * @return void
74
-     */
75
-    protected function addWithTrashed(Query $query)
76
-    {
77
-        $query->macro('withTrashed', function (Query $query) {
78
-            $this->remove($query);
79
-
80
-            return $query;
81
-        });
82
-    }
83
-
84
-    /**
85
-     * Add the only-trashed extension to the builder.
86
-     *
87
-     * @param  \Analogue\ORM\System\Query $query
88
-     * @return void
89
-     */
90
-    protected function addOnlyTrashed(Query $query)
91
-    {
92
-        $query->macro('onlyTrashed', function (Query $query) {
93
-            $this->remove($query);
94
-
95
-            $query->getQuery()->whereNotNull($query->getMapper()->getEntityMap()->getQualifiedDeletedAtColumn());
96
-
97
-            return $query;
98
-        });
99
-    }
100
-
101
-    /**
102
-     * Determine if the given where clause is a soft delete constraint.
103
-     *
104
-     * @param  array  $where
105
-     * @param  string $column
106
-     * @return bool
107
-     */
108
-    protected function isSoftDeleteConstraint(array $where, $column)
109
-    {
110
-        return $where['type'] == 'Null' && $where['column'] == $column;
111
-    }
10
+	/**
11
+	 * All of the extensions to be added to the builder.
12
+	 *
13
+	 * @var array
14
+	 */
15
+	protected $extensions = ['WithTrashed', 'OnlyTrashed'];
16
+
17
+	/**
18
+	 * Apply the scope to a given Analogue query builder.
19
+	 *
20
+	 * @param  \Analogue\ORM\System\Query $query
21
+	 * @return void
22
+	 */
23
+	public function apply(Query $query)
24
+	{
25
+		$entityMap = $query->getMapper()->getEntityMap();
26
+
27
+		$query->whereNull($entityMap->getQualifiedDeletedAtColumn());
28
+
29
+		$this->extend($query);
30
+	}
31
+
32
+	/**
33
+	 * Remove the scope from the given Analogue query builder.
34
+	 *
35
+	 * @param  mixed $query
36
+	 * @return void
37
+	 */
38
+	public function remove(Query $query)
39
+	{
40
+		$column = $query->getMapper()->getEntityMap()->getQualifiedDeletedAtColumn();
41
+
42
+		$query = $query->getQuery();
43
+
44
+		foreach ((array) $query->wheres as $key => $where) {
45
+			// If the where clause is a soft delete date constraint, we will remove it from
46
+			// the query and reset the keys on the wheres. This allows this developer to
47
+			// include deleted model in a relationship result set that is lazy loaded.
48
+			if ($this->isSoftDeleteConstraint($where, $column)) {
49
+				unset($query->wheres[$key]);
50
+
51
+				$query->wheres = array_values($query->wheres);
52
+			}
53
+		}
54
+	}
55
+
56
+	/**
57
+	 * Extend the query builder with the needed functions.
58
+	 *
59
+	 * @param  \Analogue\ORM\System\Query $query
60
+	 * @return void
61
+	 */
62
+	public function extend(Query $query)
63
+	{
64
+		foreach ($this->extensions as $extension) {
65
+			$this->{"add{$extension}"}($query);
66
+		}
67
+	}
68
+
69
+	/**
70
+	 * Add the with-trashed extension to the builder.
71
+	 *
72
+	 * @param  \Analogue\ORM\System\Query $query
73
+	 * @return void
74
+	 */
75
+	protected function addWithTrashed(Query $query)
76
+	{
77
+		$query->macro('withTrashed', function (Query $query) {
78
+			$this->remove($query);
79
+
80
+			return $query;
81
+		});
82
+	}
83
+
84
+	/**
85
+	 * Add the only-trashed extension to the builder.
86
+	 *
87
+	 * @param  \Analogue\ORM\System\Query $query
88
+	 * @return void
89
+	 */
90
+	protected function addOnlyTrashed(Query $query)
91
+	{
92
+		$query->macro('onlyTrashed', function (Query $query) {
93
+			$this->remove($query);
94
+
95
+			$query->getQuery()->whereNotNull($query->getMapper()->getEntityMap()->getQualifiedDeletedAtColumn());
96
+
97
+			return $query;
98
+		});
99
+	}
100
+
101
+	/**
102
+	 * Determine if the given where clause is a soft delete constraint.
103
+	 *
104
+	 * @param  array  $where
105
+	 * @param  string $column
106
+	 * @return bool
107
+	 */
108
+	protected function isSoftDeleteConstraint(array $where, $column)
109
+	{
110
+		return $where['type'] == 'Null' && $where['column'] == $column;
111
+	}
112 112
 }
Please login to merge, or discard this patch.
src/Plugins/AnaloguePluginInterface.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -3,17 +3,17 @@
 block discarded – undo
3 3
 interface AnaloguePluginInterface
4 4
 {
5 5
 
6
-    /**
7
-     * Boot the plugin
8
-     *
9
-     * @return void
10
-     */
11
-    public function register();
6
+	/**
7
+	 * Boot the plugin
8
+	 *
9
+	 * @return void
10
+	 */
11
+	public function register();
12 12
 
13
-    /**
14
-     * Get custom events provided by the plugin
15
-     *
16
-     * @return array
17
-     */
18
-    public function getCustomEvents();
13
+	/**
14
+	 * Get custom events provided by the plugin
15
+	 *
16
+	 * @return array
17
+	 */
18
+	public function getCustomEvents();
19 19
 }
Please login to merge, or discard this patch.
src/AnalogueServiceProvider.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      */
35 35
     public function register()
36 36
     {
37
-        $this->app->singleton('analogue', function ($app) {
37
+        $this->app->singleton('analogue', function($app) {
38 38
 
39 39
             $db = $app['db'];
40 40
 
Please login to merge, or discard this patch.
Indentation   +38 added lines, -38 removed lines patch added patch discarded remove patch
@@ -13,53 +13,53 @@
 block discarded – undo
13 13
  */
14 14
 class AnalogueServiceProvider extends ServiceProvider
15 15
 {
16
-    /**
17
-     * Indicates if loading of the provider is deferred.
18
-     *
19
-     * @var bool
20
-     */
21
-    protected $defer = false;
16
+	/**
17
+	 * Indicates if loading of the provider is deferred.
18
+	 *
19
+	 * @var bool
20
+	 */
21
+	protected $defer = false;
22 22
 
23
-    public function boot()
24
-    {
25
-        $manager = $this->app->make('analogue');
23
+	public function boot()
24
+	{
25
+		$manager = $this->app->make('analogue');
26 26
 
27
-        $manager->registerPlugin('Analogue\ORM\Plugins\Timestamps\TimestampsPlugin');
28
-        $manager->registerPlugin('Analogue\ORM\Plugins\SoftDeletes\SoftDeletesPlugin');
29
-    }
27
+		$manager->registerPlugin('Analogue\ORM\Plugins\Timestamps\TimestampsPlugin');
28
+		$manager->registerPlugin('Analogue\ORM\Plugins\SoftDeletes\SoftDeletesPlugin');
29
+	}
30 30
 
31
-    /**
32
-     * Register the service provider.
33
-     *
34
-     * @return void
35
-     */
36
-    public function register()
37
-    {
38
-        $this->app->singleton('analogue', function ($app) {
31
+	/**
32
+	 * Register the service provider.
33
+	 *
34
+	 * @return void
35
+	 */
36
+	public function register()
37
+	{
38
+		$this->app->singleton('analogue', function ($app) {
39 39
 
40
-            $db = $app['db'];
40
+			$db = $app['db'];
41 41
 
42
-            $connectionProvider = new IlluminateConnectionProvider($db);
42
+			$connectionProvider = new IlluminateConnectionProvider($db);
43 43
 
44
-            $illuminate = new IlluminateDriver($connectionProvider);
44
+			$illuminate = new IlluminateDriver($connectionProvider);
45 45
 
46
-            $driverManager = new DriverManager;
46
+			$driverManager = new DriverManager;
47 47
 
48
-            $driverManager->addDriver($illuminate);
48
+			$driverManager->addDriver($illuminate);
49 49
 
50
-            $event = $app->make('events');
50
+			$event = $app->make('events');
51 51
 
52
-            return new Manager($driverManager, $event);
53
-        });
54
-    }
52
+			return new Manager($driverManager, $event);
53
+		});
54
+	}
55 55
     
56
-    /**
57
-     * Get the services provided by the provider.
58
-     *
59
-     * @return array
60
-     */
61
-    public function provides()
62
-    {
63
-        return ['analogue'];
64
-    }
56
+	/**
57
+	 * Get the services provided by the provider.
58
+	 *
59
+	 * @return array
60
+	 */
61
+	public function provides()
62
+	{
63
+		return ['analogue'];
64
+	}
65 65
 }
Please login to merge, or discard this patch.
src/Relationships/BelongsToMany.php 3 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -383,6 +383,7 @@
 block discarded – undo
383 383
      * Set the join clause for the relation query.
384 384
      *
385 385
      * @param  \Analogue\ORM\Query|null
386
+     * @param Query $query
386 387
      * @return $this
387 388
      */
388 389
     protected function setJoin($query = null)
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
      */
146 146
     public function wherePivot($column, $operator = null, $value = null, $boolean = 'and')
147 147
     {
148
-        return $this->where($this->table . '.' . $column, $operator, $value, $boolean);
148
+        return $this->where($this->table.'.'.$column, $operator, $value, $boolean);
149 149
     }
150 150
 
151 151
     /**
@@ -326,11 +326,11 @@  discard block
 block discarded – undo
326 326
 
327 327
         $tablePrefix = $this->query->getQuery()->getConnection()->getTablePrefix();
328 328
 
329
-        $query->from($this->table . ' as ' . $tablePrefix . $hash = $this->getRelationCountHash());
329
+        $query->from($this->table.' as '.$tablePrefix.$hash = $this->getRelationCountHash());
330 330
 
331 331
         $key = $this->wrap($this->getQualifiedParentKeyName());
332 332
 
333
-        return $query->where($hash . '.' . $this->foreignKey, '=', new Expression($key));
333
+        return $query->where($hash.'.'.$this->foreignKey, '=', new Expression($key));
334 334
     }
335 335
 
336 336
     /**
@@ -340,7 +340,7 @@  discard block
 block discarded – undo
340 340
      */
341 341
     public function getRelationCountHash()
342 342
     {
343
-        return 'self_' . md5(microtime(true));
343
+        return 'self_'.md5(microtime(true));
344 344
     }
345 345
 
346 346
     /**
@@ -352,7 +352,7 @@  discard block
 block discarded – undo
352 352
     protected function getSelectColumns(array $columns = ['*'])
353 353
     {
354 354
         if ($columns == ['*']) {
355
-            $columns = [$this->relatedMap->getTable() . '.*'];
355
+            $columns = [$this->relatedMap->getTable().'.*'];
356 356
         }
357 357
 
358 358
         return array_merge($columns, $this->getAliasedPivotColumns());
@@ -373,7 +373,7 @@  discard block
 block discarded – undo
373 373
         $columns = [];
374 374
 
375 375
         foreach (array_merge($defaults, $this->pivotColumns) as $column) {
376
-            $columns[] = $this->table . '.' . $column . ' as pivot_' . $column;
376
+            $columns[] = $this->table.'.'.$column.' as pivot_'.$column;
377 377
         }
378 378
 
379 379
         return array_unique($columns);
@@ -394,7 +394,7 @@  discard block
 block discarded – undo
394 394
         // model instance. Then we can set the "where" for the parent models.
395 395
         $baseTable = $this->relatedMap->getTable();
396 396
 
397
-        $key = $baseTable . '.' . $this->relatedMap->getKeyName();
397
+        $key = $baseTable.'.'.$this->relatedMap->getKeyName();
398 398
 
399 399
         $query->join($this->table, $key, '=', $this->getOtherKey());
400 400
 
@@ -752,7 +752,7 @@  discard block
 block discarded – undo
752 752
     {
753 753
         $keyName = $this->relatedMap->getKeyName();
754 754
 
755
-        return array_map(function ($m) use ($keyName) {
755
+        return array_map(function($m) use ($keyName) {
756 756
             return $m->$keyName;
757 757
         }, $entities);
758 758
     }
@@ -902,7 +902,7 @@  discard block
 block discarded – undo
902 902
      */
903 903
     public function getForeignKey()
904 904
     {
905
-        return $this->table . '.' . $this->foreignKey;
905
+        return $this->table.'.'.$this->foreignKey;
906 906
     }
907 907
 
908 908
     /**
@@ -912,7 +912,7 @@  discard block
 block discarded – undo
912 912
      */
913 913
     public function getOtherKey()
914 914
     {
915
-        return $this->table . '.' . $this->otherKey;
915
+        return $this->table.'.'.$this->otherKey;
916 916
     }
917 917
 
918 918
     /**
Please login to merge, or discard this patch.
Indentation   +929 added lines, -929 removed lines patch added patch discarded remove patch
@@ -12,938 +12,938 @@
 block discarded – undo
12 12
 
13 13
 class BelongsToMany extends Relationship
14 14
 {
15
-    /**
16
-     * The intermediate table for the relation.
17
-     *
18
-     * @var string
19
-     */
20
-    protected $table;
21
-
22
-    /**
23
-     * The foreign key of the parent model.
24
-     *
25
-     * @var string
26
-     */
27
-    protected $foreignKey;
28
-
29
-    /**
30
-     * The associated key of the relation.
31
-     *
32
-     * @var string
33
-     */
34
-    protected $otherKey;
35
-
36
-    /**
37
-     * The "name" of the relationship.
38
-     *
39
-     * @var string
40
-     */
41
-    protected $relationName;
42
-
43
-    /**
44
-     * The pivot table columns to retrieve.
45
-     *
46
-     * @var array
47
-     */
48
-    protected $pivotColumns = [];
49
-
50
-    /**
51
-     * This relationship has pivot attributes
52
-     *
53
-     * @var boolean
54
-     */
55
-    protected static $hasPivot = true;
56
-
57
-    /**
58
-     * Create a new has many relationship instance.
59
-     *
60
-     * @param Mapper   $mapper
61
-     * @param Mappable $parent
62
-     * @param string   $table
63
-     * @param string   $foreignKey
64
-     * @param string   $otherKey
65
-     * @param string   $relationName
66
-     */
67
-    public function __construct(Mapper $mapper, $parent, $table, $foreignKey, $otherKey, $relationName = null)
68
-    {
69
-        $this->table = $table;
70
-        $this->otherKey = $otherKey;
71
-        $this->foreignKey = $foreignKey;
72
-        $this->relationName = $relationName;
73
-
74
-        parent::__construct($mapper, $parent);
75
-    }
76
-
77
-    /**
78
-     * @param  $related
79
-     * @return mixed
80
-     */
81
-    public function attachTo($related)
82
-    {
83
-    }
84
-
85
-    /**
86
-     * @param  $related
87
-     * @return mixed
88
-     */
89
-    public function detachFrom($related)
90
-    {
91
-        $ids = $this->getIdsFromHashes([$related]);
92
-
93
-        $this->detach($ids);
94
-    }
95
-
96
-    /**
97
-     * @param $related
98
-     */
99
-    public function detachMany($related)
100
-    {
101
-        $ids = $this->getIdsFromHashes($related);
102
-
103
-        $this->detach($ids);
104
-    }
105
-
106
-    /**
107
-     * @param array $hashes
108
-     * @return array
109
-     */
110
-    protected function getIdsFromHashes(array $hashes)
111
-    {
112
-        $ids = [];
113
-
114
-        foreach ($hashes as $hash) {
115
-            $split = explode('.', $hash);
116
-            $ids[] = $split[1];
117
-        }
118
-        return $ids;
119
-    }
120
-
121
-    /**
122
-     * Get the results of the relationship.
123
-     *
124
-     * @param $relation
125
-     *
126
-     * @return EntityCollection
127
-     */
128
-    public function getResults($relation)
129
-    {
130
-        $results = $this->get();
131
-
132
-        $this->cacheRelation($results, $relation);
133
-
134
-        return $results;
135
-    }
136
-
137
-    /**
138
-     * Set a where clause for a pivot table column.
139
-     *
140
-     * @param  string $column
141
-     * @param  string $operator
142
-     * @param  mixed  $value
143
-     * @param  string $boolean
144
-     * @return self
145
-     */
146
-    public function wherePivot($column, $operator = null, $value = null, $boolean = 'and')
147
-    {
148
-        return $this->where($this->table . '.' . $column, $operator, $value, $boolean);
149
-    }
150
-
151
-    /**
152
-     * Set an or where clause for a pivot table column.
153
-     *
154
-     * @param  string $column
155
-     * @param  string $operator
156
-     * @param  mixed  $value
157
-     * @return self
158
-     */
159
-    public function orWherePivot($column, $operator = null, $value = null)
160
-    {
161
-        return $this->wherePivot($column, $operator, $value, 'or');
162
-    }
163
-
164
-    /**
165
-     * Return Pivot attributes when available on a relationship
166
-     *
167
-     * @return array
168
-     */
169
-    public function getPivotAttributes()
170
-    {
171
-        return $this->pivotColumns;
172
-    }
173
-
174
-    /**
175
-     * Execute the query and get the first result.
176
-     *
177
-     * @param  array $columns
178
-     * @return mixed
179
-     */
180
-    public function first($columns = ['*'])
181
-    {
182
-        $results = $this->take(1)->get($columns);
183
-
184
-        return count($results) > 0 ? $results->first() : null;
185
-    }
186
-
187
-    /**
188
-     * Execute the query and get the first result or throw an exception.
189
-     *
190
-     * @param  array $columns
191
-     *
192
-     * @throws EntityNotFoundException
193
-     *
194
-     * @return Mappable|self
195
-     */
196
-    public function firstOrFail($columns = ['*'])
197
-    {
198
-        if (!is_null($entity = $this->first($columns))) {
199
-            return $entity;
200
-        }
201
-
202
-        throw new EntityNotFoundException;
203
-    }
204
-
205
-    /**
206
-     * Execute the query as a "select" statement.
207
-     *
208
-     * @param  array $columns
209
-     * @return \Analogue\ORM\EntityCollection
210
-     */
211
-    public function get($columns = ['*'])
212
-    {
213
-        // First we'll add the proper select columns onto the query so it is run with
214
-        // the proper columns. Then, we will get the results and hydrate out pivot
215
-        // models with the result of those columns as a separate model relation.
216
-        $columns = $this->query->getQuery()->columns ? [] : $columns;
217
-
218
-        $select = $this->getSelectColumns($columns);
219
-
220
-        $entities = $this->query->addSelect($select)->getEntities();
221
-
222
-        $this->hydratePivotRelation($entities);
223
-
224
-        // If we actually found models we will also eager load any relationships that
225
-        // have been specified as needing to be eager loaded. This will solve the
226
-        // n + 1 query problem for the developer and also increase performance.
227
-        if (count($entities) > 0) {
228
-            $entities = $this->query->eagerLoadRelations($entities);
229
-        }
230
-
231
-        return $this->relatedMap->newCollection($entities);
232
-    }
233
-
234
-    /**
235
-     * Hydrate the pivot table relationship on the models.
236
-     *
237
-     * @param  array $entities
238
-     * @return void
239
-     */
240
-    protected function hydratePivotRelation(array $entities)
241
-    {
242
-        // To hydrate the pivot relationship, we will just gather the pivot attributes
243
-        // and create a new Pivot model, which is basically a dynamic model that we
244
-        // will set the attributes, table, and connections on so it they be used.
245
-
246
-        foreach ($entities as $entity) {
247
-            $entityWrapper = $this->factory->make($entity);
248
-
249
-            $pivot = $this->newExistingPivot($this->cleanPivotAttributes($entityWrapper));
250
-
251
-            $entityWrapper->setEntityAttribute('pivot', $pivot);
252
-        }
253
-    }
254
-
255
-    /**
256
-     * Get the pivot attributes from a model.
257
-     *
258
-     * @param  $entity
259
-     * @return array
260
-     */
261
-    protected function cleanPivotAttributes(InternallyMappable $entity)
262
-    {
263
-        $values = [];
264
-
265
-        $attributes = $entity->getEntityAttributes();
266
-
267
-        foreach ($attributes as $key => $value) {
268
-            // To get the pivots attributes we will just take any of the attributes which
269
-            // begin with "pivot_" and add those to this arrays, as well as unsetting
270
-            // them from the parent's models since they exist in a different table.
271
-            if (strpos($key, 'pivot_') === 0) {
272
-                $values[substr($key, 6)] = $value;
273
-
274
-                unset($attributes[$key]);
275
-            }
276
-        }
277
-
278
-        // Rehydrate Entity with cleaned array.
279
-        $entity->setEntityAttributes($attributes);
280
-
281
-        return $values;
282
-    }
283
-
284
-    /**
285
-     * Set the base constraints on the relation query.
286
-     *
287
-     * @return void
288
-     */
289
-    public function addConstraints()
290
-    {
291
-        $this->setJoin();
292
-
293
-        if (static::$constraints) {
294
-            $this->setWhere();
295
-        }
296
-    }
297
-
298
-    /**
299
-     * Add the constraints for a relationship count query.
300
-     *
301
-     * @param  Query $query
302
-     * @param  Query $parent
303
-     * @return Query
304
-     */
305
-    public function getRelationCountQuery(Query $query, Query $parent)
306
-    {
307
-        if ($parent->getQuery()->from == $query->getQuery()->from) {
308
-            return $this->getRelationCountQueryForSelfJoin($query, $parent);
309
-        }
310
-
311
-        $this->setJoin($query);
312
-
313
-        return parent::getRelationCountQuery($query, $parent);
314
-    }
315
-
316
-    /**
317
-     * Add the constraints for a relationship count query on the same table.
318
-     *
319
-     * @param  Query $query
320
-     * @param  Query $parent
321
-     * @return Query
322
-     */
323
-    public function getRelationCountQueryForSelfJoin(Query $query, Query $parent)
324
-    {
325
-        $query->select(new Expression('count(*)'));
326
-
327
-        $tablePrefix = $this->query->getQuery()->getConnection()->getTablePrefix();
328
-
329
-        $query->from($this->table . ' as ' . $tablePrefix . $hash = $this->getRelationCountHash());
330
-
331
-        $key = $this->wrap($this->getQualifiedParentKeyName());
332
-
333
-        return $query->where($hash . '.' . $this->foreignKey, '=', new Expression($key));
334
-    }
335
-
336
-    /**
337
-     * Get a relationship join table hash.
338
-     *
339
-     * @return string
340
-     */
341
-    public function getRelationCountHash()
342
-    {
343
-        return 'self_' . md5(microtime(true));
344
-    }
345
-
346
-    /**
347
-     * Set the select clause for the relation query.
348
-     *
349
-     * @param  array $columns
350
-     * @return \Analogue\ORM\Relationships\BelongsToMany
351
-     */
352
-    protected function getSelectColumns(array $columns = ['*'])
353
-    {
354
-        if ($columns == ['*']) {
355
-            $columns = [$this->relatedMap->getTable() . '.*'];
356
-        }
357
-
358
-        return array_merge($columns, $this->getAliasedPivotColumns());
359
-    }
360
-
361
-    /**
362
-     * Get the pivot columns for the relation.
363
-     *
364
-     * @return array
365
-     */
366
-    protected function getAliasedPivotColumns()
367
-    {
368
-        $defaults = [$this->foreignKey, $this->otherKey];
369
-
370
-        // We need to alias all of the pivot columns with the "pivot_" prefix so we
371
-        // can easily extract them out of the models and put them into the pivot
372
-        // relationships when they are retrieved and hydrated into the models.
373
-        $columns = [];
374
-
375
-        foreach (array_merge($defaults, $this->pivotColumns) as $column) {
376
-            $columns[] = $this->table . '.' . $column . ' as pivot_' . $column;
377
-        }
378
-
379
-        return array_unique($columns);
380
-    }
381
-
382
-    /**
383
-     * Set the join clause for the relation query.
384
-     *
385
-     * @param  \Analogue\ORM\Query|null
386
-     * @return $this
387
-     */
388
-    protected function setJoin($query = null)
389
-    {
390
-        $query = $query ?: $this->query;
391
-
392
-        // We need to join to the intermediate table on the related model's primary
393
-        // key column with the intermediate table's foreign key for the related
394
-        // model instance. Then we can set the "where" for the parent models.
395
-        $baseTable = $this->relatedMap->getTable();
396
-
397
-        $key = $baseTable . '.' . $this->relatedMap->getKeyName();
398
-
399
-        $query->join($this->table, $key, '=', $this->getOtherKey());
400
-
401
-        return $this;
402
-    }
403
-
404
-    /**
405
-     * Set the where clause for the relation query.
406
-     *
407
-     * @return $this
408
-     */
409
-    protected function setWhere()
410
-    {
411
-        $foreign = $this->getForeignKey();
412
-
413
-        $parentKey = $this->parentMap->getKeyName();
414
-
415
-        $this->query->where($foreign, '=', $this->parent->getEntityAttribute($parentKey));
416
-
417
-        return $this;
418
-    }
419
-
420
-    /**
421
-     * Set the constraints for an eager load of the relation.
422
-     *
423
-     * @param  array $entities
424
-     * @return void
425
-     */
426
-    public function addEagerConstraints(array $entities)
427
-    {
428
-        $this->query->whereIn($this->getForeignKey(), $this->getKeys($entities));
429
-    }
430
-
431
-    /**
432
-     * Initialize the relation on a set of eneities.
433
-     *
434
-     * @param  array  $entities
435
-     * @param  string $relation
436
-     * @return array
437
-     */
438
-    public function initRelation(array $entities, $relation)
439
-    {
440
-        foreach ($entities as $entity) {
441
-            $entity = $this->factory->make($entity);
442
-
443
-            $entity->setEntityAttribute($relation, $this->relatedMap->newCollection());
444
-        }
445
-
446
-        return $entities;
447
-    }
448
-
449
-    /**
450
-     * Match the eagerly loaded results to their parents.
451
-     *
452
-     * @param  array            $entities
453
-     * @param  EntityCollection $results
454
-     * @param  string           $relation
455
-     * @return array
456
-     */
457
-    public function match(array $entities, EntityCollection $results, $relation)
458
-    {
459
-        $dictionary = $this->buildDictionary($results);
460
-
461
-        $keyName = $this->relatedMap->getKeyName();
462
-
463
-        $cache = $this->parentMapper->getEntityCache();
464
-
465
-        // Once we have an array dictionary of child objects we can easily match the
466
-        // children back to their parent using the dictionary and the keys on the
467
-        // the parent models. Then we will return the hydrated models back out.
468
-        foreach ($entities as $entity) {
469
-            $wrapper = $this->factory->make($entity);
470
-
471
-            if (isset($dictionary[$key = $wrapper->getEntityAttribute($keyName)])) {
472
-                $collection = $this->relatedMap->newCollection($dictionary[$key]);
473
-
474
-                $wrapper->setEntityAttribute($relation, $collection);
475
-
476
-                $cache->cacheLoadedRelationResult($entity, $relation, $collection, $this);
477
-            }
478
-        }
479
-
480
-        return $entities;
481
-    }
482
-
483
-    /**
484
-     * Build model dictionary keyed by the relation's foreign key.
485
-     *
486
-     * @param  EntityCollection $results
487
-     * @return array
488
-     */
489
-    protected function buildDictionary(EntityCollection $results)
490
-    {
491
-        $foreign = $this->foreignKey;
492
-
493
-        $foreign = $this->relatedMap->getAttributeNameForColumn($foreign);
494
-
495
-        // First we will build a dictionary of child models keyed by the foreign key
496
-        // of the relation so that we will easily and quickly match them to their
497
-        // parents without having a possibly slow inner loops for every models.
498
-        $dictionary = [];
499
-
500
-        foreach ($results as $entity) {
501
-            $wrapper = $this->factory->make($entity);
502
-
503
-            $dictionary[$wrapper->getEntityAttribute('pivot')->$foreign][] = $entity;
504
-        }
505
-
506
-        return $dictionary;
507
-    }
508
-
509
-    /**
510
-     * Get all of the IDs for the related models.
511
-     *
512
-     * @return array
513
-     */
514
-    public function getRelatedIds()
515
-    {
516
-        $fullKey = $this->relatedMap->getQualifiedKeyName();
517
-
518
-        return $this->getQuery()->select($fullKey)->lists($this->relatedMap->getKeyName());
519
-    }
520
-
521
-    /**
522
-     * Update Pivot
523
-     *
524
-     * @param  \Analogue\ORM\Entity $entity
525
-     * @return void
526
-     */
527
-    public function updatePivot($entity)
528
-    {
529
-        $keyName = $this->relatedMap->getKeyName();
530
-
531
-        $this->updateExistingPivot(
532
-            $entity->getEntityAttribute($keyName),
533
-            $entity->getEntityAttribute('pivot')->getEntityAttributes()
534
-        );
535
-    }
536
-
537
-    /**
538
-     * Update Multiple pivot
539
-     *
540
-     * @param  $relatedEntities
541
-     * @return void
542
-     */
543
-    public function updatePivots($relatedEntities)
544
-    {
545
-        foreach ($relatedEntities as $entity) {
546
-            $this->updatePivot($entity);
547
-        }
548
-    }
549
-
550
-    /**
551
-     * Create Pivot Records
552
-     *
553
-     * @param \Analogue\ORM\Entity[] $relatedEntities
554
-     * @return void
555
-     */
556
-    public function createPivots($relatedEntities)
557
-    {
558
-        $keys = [];
559
-        $attributes = [];
560
-
561
-        $keyName = $this->relatedMap->getKeyName();
562
-
563
-        foreach ($relatedEntities as $entity) {
564
-            $keys[] = $entity->getEntityAttribute($keyName);
565
-        }
566
-
567
-        $records = $this->createAttachRecords($keys, $attributes);
568
-
569
-        $this->query->getQuery()->from($this->table)->insert($records);
570
-    }
571
-
572
-    /**
573
-     * Update an existing pivot record on the table.
574
-     *
575
-     * @param  mixed $id
576
-     * @param  array $attributes
577
-     * @throws \InvalidArgumentException
578
-     * @return integer
579
-     */
580
-    public function updateExistingPivot($id, array $attributes)
581
-    {
582
-        if (in_array($this->updatedAt(), $this->pivotColumns)) {
583
-            $attributes = $this->setTimestampsOnAttach($attributes, true);
584
-        }
585
-
586
-        return $this->newPivotStatementForId($id)->update($attributes);
587
-    }
588
-
589
-    /**
590
-     * Attach a model to the parent.
591
-     *
592
-     * @param  mixed $id
593
-     * @param  array $attributes
594
-     * @return void
595
-     */
596
-    public function attach($id, array $attributes = [])
597
-    {
598
-        $query = $this->newPivotStatement();
599
-
600
-        $query->insert($this->createAttachRecords((array) $id, $attributes));
601
-    }
602
-
603
-    /**
604
-     * @param  array $entities
605
-     *
606
-     * @throws \InvalidArgumentException
607
-     */
608
-    public function sync(array $entities)
609
-    {
610
-        $this->detachExcept($entities);
611
-    }
612
-
613
-    /**
614
-     * Detach related entities that are not in $id
615
-     *
616
-     * @param  array $entities
617
-     *
618
-     * @throws \InvalidArgumentException
619
-     *
620
-     * @return void
621
-     */
622
-    protected function detachExcept(array $entities = [])
623
-    {
624
-        $query = $this->newPivotQuery();
625
-
626
-        if (count($entities) > 0) {
627
-            $keys = $this->getKeys($entities);
628
-
629
-            $query->whereNotIn($this->otherKey, $keys);
630
-        }
631
-        $parentKey = $this->parentMap->getKeyName();
632
-
633
-        $query->where($this->foreignKey, '=', $this->parent->getEntityAttribute($parentKey));
15
+	/**
16
+	 * The intermediate table for the relation.
17
+	 *
18
+	 * @var string
19
+	 */
20
+	protected $table;
21
+
22
+	/**
23
+	 * The foreign key of the parent model.
24
+	 *
25
+	 * @var string
26
+	 */
27
+	protected $foreignKey;
28
+
29
+	/**
30
+	 * The associated key of the relation.
31
+	 *
32
+	 * @var string
33
+	 */
34
+	protected $otherKey;
35
+
36
+	/**
37
+	 * The "name" of the relationship.
38
+	 *
39
+	 * @var string
40
+	 */
41
+	protected $relationName;
42
+
43
+	/**
44
+	 * The pivot table columns to retrieve.
45
+	 *
46
+	 * @var array
47
+	 */
48
+	protected $pivotColumns = [];
49
+
50
+	/**
51
+	 * This relationship has pivot attributes
52
+	 *
53
+	 * @var boolean
54
+	 */
55
+	protected static $hasPivot = true;
56
+
57
+	/**
58
+	 * Create a new has many relationship instance.
59
+	 *
60
+	 * @param Mapper   $mapper
61
+	 * @param Mappable $parent
62
+	 * @param string   $table
63
+	 * @param string   $foreignKey
64
+	 * @param string   $otherKey
65
+	 * @param string   $relationName
66
+	 */
67
+	public function __construct(Mapper $mapper, $parent, $table, $foreignKey, $otherKey, $relationName = null)
68
+	{
69
+		$this->table = $table;
70
+		$this->otherKey = $otherKey;
71
+		$this->foreignKey = $foreignKey;
72
+		$this->relationName = $relationName;
73
+
74
+		parent::__construct($mapper, $parent);
75
+	}
76
+
77
+	/**
78
+	 * @param  $related
79
+	 * @return mixed
80
+	 */
81
+	public function attachTo($related)
82
+	{
83
+	}
84
+
85
+	/**
86
+	 * @param  $related
87
+	 * @return mixed
88
+	 */
89
+	public function detachFrom($related)
90
+	{
91
+		$ids = $this->getIdsFromHashes([$related]);
92
+
93
+		$this->detach($ids);
94
+	}
95
+
96
+	/**
97
+	 * @param $related
98
+	 */
99
+	public function detachMany($related)
100
+	{
101
+		$ids = $this->getIdsFromHashes($related);
102
+
103
+		$this->detach($ids);
104
+	}
105
+
106
+	/**
107
+	 * @param array $hashes
108
+	 * @return array
109
+	 */
110
+	protected function getIdsFromHashes(array $hashes)
111
+	{
112
+		$ids = [];
113
+
114
+		foreach ($hashes as $hash) {
115
+			$split = explode('.', $hash);
116
+			$ids[] = $split[1];
117
+		}
118
+		return $ids;
119
+	}
120
+
121
+	/**
122
+	 * Get the results of the relationship.
123
+	 *
124
+	 * @param $relation
125
+	 *
126
+	 * @return EntityCollection
127
+	 */
128
+	public function getResults($relation)
129
+	{
130
+		$results = $this->get();
131
+
132
+		$this->cacheRelation($results, $relation);
133
+
134
+		return $results;
135
+	}
136
+
137
+	/**
138
+	 * Set a where clause for a pivot table column.
139
+	 *
140
+	 * @param  string $column
141
+	 * @param  string $operator
142
+	 * @param  mixed  $value
143
+	 * @param  string $boolean
144
+	 * @return self
145
+	 */
146
+	public function wherePivot($column, $operator = null, $value = null, $boolean = 'and')
147
+	{
148
+		return $this->where($this->table . '.' . $column, $operator, $value, $boolean);
149
+	}
150
+
151
+	/**
152
+	 * Set an or where clause for a pivot table column.
153
+	 *
154
+	 * @param  string $column
155
+	 * @param  string $operator
156
+	 * @param  mixed  $value
157
+	 * @return self
158
+	 */
159
+	public function orWherePivot($column, $operator = null, $value = null)
160
+	{
161
+		return $this->wherePivot($column, $operator, $value, 'or');
162
+	}
163
+
164
+	/**
165
+	 * Return Pivot attributes when available on a relationship
166
+	 *
167
+	 * @return array
168
+	 */
169
+	public function getPivotAttributes()
170
+	{
171
+		return $this->pivotColumns;
172
+	}
173
+
174
+	/**
175
+	 * Execute the query and get the first result.
176
+	 *
177
+	 * @param  array $columns
178
+	 * @return mixed
179
+	 */
180
+	public function first($columns = ['*'])
181
+	{
182
+		$results = $this->take(1)->get($columns);
183
+
184
+		return count($results) > 0 ? $results->first() : null;
185
+	}
186
+
187
+	/**
188
+	 * Execute the query and get the first result or throw an exception.
189
+	 *
190
+	 * @param  array $columns
191
+	 *
192
+	 * @throws EntityNotFoundException
193
+	 *
194
+	 * @return Mappable|self
195
+	 */
196
+	public function firstOrFail($columns = ['*'])
197
+	{
198
+		if (!is_null($entity = $this->first($columns))) {
199
+			return $entity;
200
+		}
201
+
202
+		throw new EntityNotFoundException;
203
+	}
204
+
205
+	/**
206
+	 * Execute the query as a "select" statement.
207
+	 *
208
+	 * @param  array $columns
209
+	 * @return \Analogue\ORM\EntityCollection
210
+	 */
211
+	public function get($columns = ['*'])
212
+	{
213
+		// First we'll add the proper select columns onto the query so it is run with
214
+		// the proper columns. Then, we will get the results and hydrate out pivot
215
+		// models with the result of those columns as a separate model relation.
216
+		$columns = $this->query->getQuery()->columns ? [] : $columns;
217
+
218
+		$select = $this->getSelectColumns($columns);
219
+
220
+		$entities = $this->query->addSelect($select)->getEntities();
221
+
222
+		$this->hydratePivotRelation($entities);
223
+
224
+		// If we actually found models we will also eager load any relationships that
225
+		// have been specified as needing to be eager loaded. This will solve the
226
+		// n + 1 query problem for the developer and also increase performance.
227
+		if (count($entities) > 0) {
228
+			$entities = $this->query->eagerLoadRelations($entities);
229
+		}
230
+
231
+		return $this->relatedMap->newCollection($entities);
232
+	}
233
+
234
+	/**
235
+	 * Hydrate the pivot table relationship on the models.
236
+	 *
237
+	 * @param  array $entities
238
+	 * @return void
239
+	 */
240
+	protected function hydratePivotRelation(array $entities)
241
+	{
242
+		// To hydrate the pivot relationship, we will just gather the pivot attributes
243
+		// and create a new Pivot model, which is basically a dynamic model that we
244
+		// will set the attributes, table, and connections on so it they be used.
245
+
246
+		foreach ($entities as $entity) {
247
+			$entityWrapper = $this->factory->make($entity);
248
+
249
+			$pivot = $this->newExistingPivot($this->cleanPivotAttributes($entityWrapper));
250
+
251
+			$entityWrapper->setEntityAttribute('pivot', $pivot);
252
+		}
253
+	}
254
+
255
+	/**
256
+	 * Get the pivot attributes from a model.
257
+	 *
258
+	 * @param  $entity
259
+	 * @return array
260
+	 */
261
+	protected function cleanPivotAttributes(InternallyMappable $entity)
262
+	{
263
+		$values = [];
264
+
265
+		$attributes = $entity->getEntityAttributes();
266
+
267
+		foreach ($attributes as $key => $value) {
268
+			// To get the pivots attributes we will just take any of the attributes which
269
+			// begin with "pivot_" and add those to this arrays, as well as unsetting
270
+			// them from the parent's models since they exist in a different table.
271
+			if (strpos($key, 'pivot_') === 0) {
272
+				$values[substr($key, 6)] = $value;
273
+
274
+				unset($attributes[$key]);
275
+			}
276
+		}
277
+
278
+		// Rehydrate Entity with cleaned array.
279
+		$entity->setEntityAttributes($attributes);
280
+
281
+		return $values;
282
+	}
283
+
284
+	/**
285
+	 * Set the base constraints on the relation query.
286
+	 *
287
+	 * @return void
288
+	 */
289
+	public function addConstraints()
290
+	{
291
+		$this->setJoin();
292
+
293
+		if (static::$constraints) {
294
+			$this->setWhere();
295
+		}
296
+	}
297
+
298
+	/**
299
+	 * Add the constraints for a relationship count query.
300
+	 *
301
+	 * @param  Query $query
302
+	 * @param  Query $parent
303
+	 * @return Query
304
+	 */
305
+	public function getRelationCountQuery(Query $query, Query $parent)
306
+	{
307
+		if ($parent->getQuery()->from == $query->getQuery()->from) {
308
+			return $this->getRelationCountQueryForSelfJoin($query, $parent);
309
+		}
310
+
311
+		$this->setJoin($query);
312
+
313
+		return parent::getRelationCountQuery($query, $parent);
314
+	}
315
+
316
+	/**
317
+	 * Add the constraints for a relationship count query on the same table.
318
+	 *
319
+	 * @param  Query $query
320
+	 * @param  Query $parent
321
+	 * @return Query
322
+	 */
323
+	public function getRelationCountQueryForSelfJoin(Query $query, Query $parent)
324
+	{
325
+		$query->select(new Expression('count(*)'));
326
+
327
+		$tablePrefix = $this->query->getQuery()->getConnection()->getTablePrefix();
328
+
329
+		$query->from($this->table . ' as ' . $tablePrefix . $hash = $this->getRelationCountHash());
330
+
331
+		$key = $this->wrap($this->getQualifiedParentKeyName());
332
+
333
+		return $query->where($hash . '.' . $this->foreignKey, '=', new Expression($key));
334
+	}
335
+
336
+	/**
337
+	 * Get a relationship join table hash.
338
+	 *
339
+	 * @return string
340
+	 */
341
+	public function getRelationCountHash()
342
+	{
343
+		return 'self_' . md5(microtime(true));
344
+	}
345
+
346
+	/**
347
+	 * Set the select clause for the relation query.
348
+	 *
349
+	 * @param  array $columns
350
+	 * @return \Analogue\ORM\Relationships\BelongsToMany
351
+	 */
352
+	protected function getSelectColumns(array $columns = ['*'])
353
+	{
354
+		if ($columns == ['*']) {
355
+			$columns = [$this->relatedMap->getTable() . '.*'];
356
+		}
357
+
358
+		return array_merge($columns, $this->getAliasedPivotColumns());
359
+	}
360
+
361
+	/**
362
+	 * Get the pivot columns for the relation.
363
+	 *
364
+	 * @return array
365
+	 */
366
+	protected function getAliasedPivotColumns()
367
+	{
368
+		$defaults = [$this->foreignKey, $this->otherKey];
369
+
370
+		// We need to alias all of the pivot columns with the "pivot_" prefix so we
371
+		// can easily extract them out of the models and put them into the pivot
372
+		// relationships when they are retrieved and hydrated into the models.
373
+		$columns = [];
374
+
375
+		foreach (array_merge($defaults, $this->pivotColumns) as $column) {
376
+			$columns[] = $this->table . '.' . $column . ' as pivot_' . $column;
377
+		}
378
+
379
+		return array_unique($columns);
380
+	}
381
+
382
+	/**
383
+	 * Set the join clause for the relation query.
384
+	 *
385
+	 * @param  \Analogue\ORM\Query|null
386
+	 * @return $this
387
+	 */
388
+	protected function setJoin($query = null)
389
+	{
390
+		$query = $query ?: $this->query;
391
+
392
+		// We need to join to the intermediate table on the related model's primary
393
+		// key column with the intermediate table's foreign key for the related
394
+		// model instance. Then we can set the "where" for the parent models.
395
+		$baseTable = $this->relatedMap->getTable();
396
+
397
+		$key = $baseTable . '.' . $this->relatedMap->getKeyName();
398
+
399
+		$query->join($this->table, $key, '=', $this->getOtherKey());
400
+
401
+		return $this;
402
+	}
403
+
404
+	/**
405
+	 * Set the where clause for the relation query.
406
+	 *
407
+	 * @return $this
408
+	 */
409
+	protected function setWhere()
410
+	{
411
+		$foreign = $this->getForeignKey();
412
+
413
+		$parentKey = $this->parentMap->getKeyName();
414
+
415
+		$this->query->where($foreign, '=', $this->parent->getEntityAttribute($parentKey));
416
+
417
+		return $this;
418
+	}
419
+
420
+	/**
421
+	 * Set the constraints for an eager load of the relation.
422
+	 *
423
+	 * @param  array $entities
424
+	 * @return void
425
+	 */
426
+	public function addEagerConstraints(array $entities)
427
+	{
428
+		$this->query->whereIn($this->getForeignKey(), $this->getKeys($entities));
429
+	}
430
+
431
+	/**
432
+	 * Initialize the relation on a set of eneities.
433
+	 *
434
+	 * @param  array  $entities
435
+	 * @param  string $relation
436
+	 * @return array
437
+	 */
438
+	public function initRelation(array $entities, $relation)
439
+	{
440
+		foreach ($entities as $entity) {
441
+			$entity = $this->factory->make($entity);
442
+
443
+			$entity->setEntityAttribute($relation, $this->relatedMap->newCollection());
444
+		}
445
+
446
+		return $entities;
447
+	}
448
+
449
+	/**
450
+	 * Match the eagerly loaded results to their parents.
451
+	 *
452
+	 * @param  array            $entities
453
+	 * @param  EntityCollection $results
454
+	 * @param  string           $relation
455
+	 * @return array
456
+	 */
457
+	public function match(array $entities, EntityCollection $results, $relation)
458
+	{
459
+		$dictionary = $this->buildDictionary($results);
460
+
461
+		$keyName = $this->relatedMap->getKeyName();
462
+
463
+		$cache = $this->parentMapper->getEntityCache();
464
+
465
+		// Once we have an array dictionary of child objects we can easily match the
466
+		// children back to their parent using the dictionary and the keys on the
467
+		// the parent models. Then we will return the hydrated models back out.
468
+		foreach ($entities as $entity) {
469
+			$wrapper = $this->factory->make($entity);
470
+
471
+			if (isset($dictionary[$key = $wrapper->getEntityAttribute($keyName)])) {
472
+				$collection = $this->relatedMap->newCollection($dictionary[$key]);
473
+
474
+				$wrapper->setEntityAttribute($relation, $collection);
475
+
476
+				$cache->cacheLoadedRelationResult($entity, $relation, $collection, $this);
477
+			}
478
+		}
479
+
480
+		return $entities;
481
+	}
482
+
483
+	/**
484
+	 * Build model dictionary keyed by the relation's foreign key.
485
+	 *
486
+	 * @param  EntityCollection $results
487
+	 * @return array
488
+	 */
489
+	protected function buildDictionary(EntityCollection $results)
490
+	{
491
+		$foreign = $this->foreignKey;
492
+
493
+		$foreign = $this->relatedMap->getAttributeNameForColumn($foreign);
494
+
495
+		// First we will build a dictionary of child models keyed by the foreign key
496
+		// of the relation so that we will easily and quickly match them to their
497
+		// parents without having a possibly slow inner loops for every models.
498
+		$dictionary = [];
499
+
500
+		foreach ($results as $entity) {
501
+			$wrapper = $this->factory->make($entity);
502
+
503
+			$dictionary[$wrapper->getEntityAttribute('pivot')->$foreign][] = $entity;
504
+		}
505
+
506
+		return $dictionary;
507
+	}
508
+
509
+	/**
510
+	 * Get all of the IDs for the related models.
511
+	 *
512
+	 * @return array
513
+	 */
514
+	public function getRelatedIds()
515
+	{
516
+		$fullKey = $this->relatedMap->getQualifiedKeyName();
517
+
518
+		return $this->getQuery()->select($fullKey)->lists($this->relatedMap->getKeyName());
519
+	}
520
+
521
+	/**
522
+	 * Update Pivot
523
+	 *
524
+	 * @param  \Analogue\ORM\Entity $entity
525
+	 * @return void
526
+	 */
527
+	public function updatePivot($entity)
528
+	{
529
+		$keyName = $this->relatedMap->getKeyName();
530
+
531
+		$this->updateExistingPivot(
532
+			$entity->getEntityAttribute($keyName),
533
+			$entity->getEntityAttribute('pivot')->getEntityAttributes()
534
+		);
535
+	}
536
+
537
+	/**
538
+	 * Update Multiple pivot
539
+	 *
540
+	 * @param  $relatedEntities
541
+	 * @return void
542
+	 */
543
+	public function updatePivots($relatedEntities)
544
+	{
545
+		foreach ($relatedEntities as $entity) {
546
+			$this->updatePivot($entity);
547
+		}
548
+	}
549
+
550
+	/**
551
+	 * Create Pivot Records
552
+	 *
553
+	 * @param \Analogue\ORM\Entity[] $relatedEntities
554
+	 * @return void
555
+	 */
556
+	public function createPivots($relatedEntities)
557
+	{
558
+		$keys = [];
559
+		$attributes = [];
560
+
561
+		$keyName = $this->relatedMap->getKeyName();
562
+
563
+		foreach ($relatedEntities as $entity) {
564
+			$keys[] = $entity->getEntityAttribute($keyName);
565
+		}
566
+
567
+		$records = $this->createAttachRecords($keys, $attributes);
568
+
569
+		$this->query->getQuery()->from($this->table)->insert($records);
570
+	}
571
+
572
+	/**
573
+	 * Update an existing pivot record on the table.
574
+	 *
575
+	 * @param  mixed $id
576
+	 * @param  array $attributes
577
+	 * @throws \InvalidArgumentException
578
+	 * @return integer
579
+	 */
580
+	public function updateExistingPivot($id, array $attributes)
581
+	{
582
+		if (in_array($this->updatedAt(), $this->pivotColumns)) {
583
+			$attributes = $this->setTimestampsOnAttach($attributes, true);
584
+		}
585
+
586
+		return $this->newPivotStatementForId($id)->update($attributes);
587
+	}
588
+
589
+	/**
590
+	 * Attach a model to the parent.
591
+	 *
592
+	 * @param  mixed $id
593
+	 * @param  array $attributes
594
+	 * @return void
595
+	 */
596
+	public function attach($id, array $attributes = [])
597
+	{
598
+		$query = $this->newPivotStatement();
599
+
600
+		$query->insert($this->createAttachRecords((array) $id, $attributes));
601
+	}
602
+
603
+	/**
604
+	 * @param  array $entities
605
+	 *
606
+	 * @throws \InvalidArgumentException
607
+	 */
608
+	public function sync(array $entities)
609
+	{
610
+		$this->detachExcept($entities);
611
+	}
612
+
613
+	/**
614
+	 * Detach related entities that are not in $id
615
+	 *
616
+	 * @param  array $entities
617
+	 *
618
+	 * @throws \InvalidArgumentException
619
+	 *
620
+	 * @return void
621
+	 */
622
+	protected function detachExcept(array $entities = [])
623
+	{
624
+		$query = $this->newPivotQuery();
625
+
626
+		if (count($entities) > 0) {
627
+			$keys = $this->getKeys($entities);
628
+
629
+			$query->whereNotIn($this->otherKey, $keys);
630
+		}
631
+		$parentKey = $this->parentMap->getKeyName();
632
+
633
+		$query->where($this->foreignKey, '=', $this->parent->getEntityAttribute($parentKey));
634 634
         
635
-        $query->delete();
636
-
637
-        $query = $this->newPivotQuery();
638
-    }
639
-
640
-
641
-    /**
642
-     * Create an array of records to insert into the pivot table.
643
-     *
644
-     * @param  array $ids
645
-     * @param  array $attributes
646
-     * @return array
647
-     */
648
-    protected function createAttachRecords($ids, array $attributes)
649
-    {
650
-        $records = [];
651
-
652
-        $timed = in_array($this->createdAt(), $this->pivotColumns);
653
-
654
-        // To create the attachment records, we will simply spin through the IDs given
655
-        // and create a new record to insert for each ID. Each ID may actually be a
656
-        // key in the array, with extra attributes to be placed in other columns.
657
-        foreach ($ids as $key => $value) {
658
-            $records[] = $this->attacher($key, $value, $attributes, $timed);
659
-        }
635
+		$query->delete();
636
+
637
+		$query = $this->newPivotQuery();
638
+	}
639
+
640
+
641
+	/**
642
+	 * Create an array of records to insert into the pivot table.
643
+	 *
644
+	 * @param  array $ids
645
+	 * @param  array $attributes
646
+	 * @return array
647
+	 */
648
+	protected function createAttachRecords($ids, array $attributes)
649
+	{
650
+		$records = [];
651
+
652
+		$timed = in_array($this->createdAt(), $this->pivotColumns);
653
+
654
+		// To create the attachment records, we will simply spin through the IDs given
655
+		// and create a new record to insert for each ID. Each ID may actually be a
656
+		// key in the array, with extra attributes to be placed in other columns.
657
+		foreach ($ids as $key => $value) {
658
+			$records[] = $this->attacher($key, $value, $attributes, $timed);
659
+		}
660 660
         
661
-        return $records;
662
-    }
663
-
664
-    /**
665
-     * Create a full attachment record payload.
666
-     *
667
-     * @param  int   $key
668
-     * @param  mixed $value
669
-     * @param  array $attributes
670
-     * @param  bool  $timed
671
-     * @return array
672
-     */
673
-    protected function attacher($key, $value, $attributes, $timed)
674
-    {
675
-        list($id, $extra) = $this->getAttachId($key, $value, $attributes);
661
+		return $records;
662
+	}
663
+
664
+	/**
665
+	 * Create a full attachment record payload.
666
+	 *
667
+	 * @param  int   $key
668
+	 * @param  mixed $value
669
+	 * @param  array $attributes
670
+	 * @param  bool  $timed
671
+	 * @return array
672
+	 */
673
+	protected function attacher($key, $value, $attributes, $timed)
674
+	{
675
+		list($id, $extra) = $this->getAttachId($key, $value, $attributes);
676 676
         
677
-        // To create the attachment records, we will simply spin through the IDs given
678
-        // and create a new record to insert for each ID. Each ID may actually be a
679
-        // key in the array, with extra attributes to be placed in other columns.
680
-        $record = $this->createAttachRecord($id, $timed);
681
-
682
-        return array_merge($record, $extra);
683
-    }
684
-
685
-    /**
686
-     * Get the attach record ID and extra attributes.
687
-     *
688
-     * @param  int   $key
689
-     * @param  mixed $value
690
-     * @param  array $attributes
691
-     * @return array
692
-     */
693
-    protected function getAttachId($key, $value, array $attributes)
694
-    {
695
-        if (is_array($value)) {
696
-            return [$key, array_merge($value, $attributes)];
697
-        }
698
-
699
-        return [$value, $attributes];
700
-    }
701
-
702
-    /**
703
-     * Create a new pivot attachment record.
704
-     *
705
-     * @param  int  $id
706
-     * @param  bool $timed
707
-     * @return array
708
-     */
709
-    protected function createAttachRecord($id, $timed)
710
-    {
711
-        $parentKey = $this->parentMap->getKeyName();
712
-
713
-        $record = [];
714
-
715
-        $record[$this->foreignKey] = $this->parent->getEntityAttribute($parentKey);
716
-
717
-        $record[$this->otherKey] = $id;
718
-
719
-        // If the record needs to have creation and update timestamps, we will make
720
-        // them by calling the parent model's "freshTimestamp" method which will
721
-        // provide us with a fresh timestamp in this model's preferred format.
722
-        if ($timed) {
723
-            $record = $this->setTimestampsOnAttach($record);
724
-        }
725
-
726
-        return $record;
727
-    }
728
-
729
-    /**
730
-     * Set the creation and update timestamps on an attach record.
731
-     *
732
-     * @param  array $record
733
-     * @param  bool  $exists
734
-     * @return array
735
-     */
736
-    protected function setTimestampsOnAttach(array $record, $exists = false)
737
-    {
738
-        $fresh = $this->freshTimestamp();
739
-
740
-        if (!$exists) {
741
-            $record[$this->createdAt()] = $fresh;
742
-        }
743
-
744
-        $record[$this->updatedAt()] = $fresh;
745
-
746
-        return $record;
747
-    }
748
-
749
-    /**
750
-     * @param EntityCollection $entities
751
-     * @return array
752
-     */
753
-    protected function getModelKeysFromCollection(EntityCollection $entities)
754
-    {
755
-        $keyName = $this->relatedMap->getKeyName();
756
-
757
-        return array_map(function ($m) use ($keyName) {
758
-            return $m->$keyName;
759
-        }, $entities);
760
-    }
761
-
762
-    /**
763
-     * Detach models from the relationship.
764
-     *
765
-     * @param  int|array $ids
766
-     * @throws \InvalidArgumentException
767
-     * @return int
768
-     */
769
-    public function detach($ids = [])
770
-    {
771
-        if ($ids instanceof EntityCollection) {
772
-            $ids = (array) $ids->modelKeys();
773
-        }
774
-
775
-        $query = $this->newPivotQuery();
776
-
777
-        // If associated IDs were passed to the method we will only delete those
778
-        // associations, otherwise all of the association ties will be broken.
779
-        // We'll return the numbers of affected rows when we do the deletes.
780
-        $ids = (array) $ids;
781
-
782
-        if (count($ids) > 0) {
783
-            $query->whereIn($this->otherKey, (array) $ids);
784
-        }
785
-
786
-        // Once we have all of the conditions set on the statement, we are ready
787
-        // to run the delete on the pivot table. Then, if the touch parameter
788
-        // is true, we will go ahead and touch all related models to sync.
789
-        return $query->delete();
790
-    }
677
+		// To create the attachment records, we will simply spin through the IDs given
678
+		// and create a new record to insert for each ID. Each ID may actually be a
679
+		// key in the array, with extra attributes to be placed in other columns.
680
+		$record = $this->createAttachRecord($id, $timed);
681
+
682
+		return array_merge($record, $extra);
683
+	}
684
+
685
+	/**
686
+	 * Get the attach record ID and extra attributes.
687
+	 *
688
+	 * @param  int   $key
689
+	 * @param  mixed $value
690
+	 * @param  array $attributes
691
+	 * @return array
692
+	 */
693
+	protected function getAttachId($key, $value, array $attributes)
694
+	{
695
+		if (is_array($value)) {
696
+			return [$key, array_merge($value, $attributes)];
697
+		}
698
+
699
+		return [$value, $attributes];
700
+	}
701
+
702
+	/**
703
+	 * Create a new pivot attachment record.
704
+	 *
705
+	 * @param  int  $id
706
+	 * @param  bool $timed
707
+	 * @return array
708
+	 */
709
+	protected function createAttachRecord($id, $timed)
710
+	{
711
+		$parentKey = $this->parentMap->getKeyName();
712
+
713
+		$record = [];
714
+
715
+		$record[$this->foreignKey] = $this->parent->getEntityAttribute($parentKey);
716
+
717
+		$record[$this->otherKey] = $id;
718
+
719
+		// If the record needs to have creation and update timestamps, we will make
720
+		// them by calling the parent model's "freshTimestamp" method which will
721
+		// provide us with a fresh timestamp in this model's preferred format.
722
+		if ($timed) {
723
+			$record = $this->setTimestampsOnAttach($record);
724
+		}
725
+
726
+		return $record;
727
+	}
728
+
729
+	/**
730
+	 * Set the creation and update timestamps on an attach record.
731
+	 *
732
+	 * @param  array $record
733
+	 * @param  bool  $exists
734
+	 * @return array
735
+	 */
736
+	protected function setTimestampsOnAttach(array $record, $exists = false)
737
+	{
738
+		$fresh = $this->freshTimestamp();
739
+
740
+		if (!$exists) {
741
+			$record[$this->createdAt()] = $fresh;
742
+		}
743
+
744
+		$record[$this->updatedAt()] = $fresh;
745
+
746
+		return $record;
747
+	}
748
+
749
+	/**
750
+	 * @param EntityCollection $entities
751
+	 * @return array
752
+	 */
753
+	protected function getModelKeysFromCollection(EntityCollection $entities)
754
+	{
755
+		$keyName = $this->relatedMap->getKeyName();
756
+
757
+		return array_map(function ($m) use ($keyName) {
758
+			return $m->$keyName;
759
+		}, $entities);
760
+	}
761
+
762
+	/**
763
+	 * Detach models from the relationship.
764
+	 *
765
+	 * @param  int|array $ids
766
+	 * @throws \InvalidArgumentException
767
+	 * @return int
768
+	 */
769
+	public function detach($ids = [])
770
+	{
771
+		if ($ids instanceof EntityCollection) {
772
+			$ids = (array) $ids->modelKeys();
773
+		}
774
+
775
+		$query = $this->newPivotQuery();
776
+
777
+		// If associated IDs were passed to the method we will only delete those
778
+		// associations, otherwise all of the association ties will be broken.
779
+		// We'll return the numbers of affected rows when we do the deletes.
780
+		$ids = (array) $ids;
781
+
782
+		if (count($ids) > 0) {
783
+			$query->whereIn($this->otherKey, (array) $ids);
784
+		}
785
+
786
+		// Once we have all of the conditions set on the statement, we are ready
787
+		// to run the delete on the pivot table. Then, if the touch parameter
788
+		// is true, we will go ahead and touch all related models to sync.
789
+		return $query->delete();
790
+	}
791 791
     
792
-    /**
793
-     * Create a new query builder for the pivot table.
794
-     *
795
-     * @throws \InvalidArgumentException
796
-     *
797
-     * @return \Illuminate\Database\Query\Builder
798
-     */
799
-    protected function newPivotQuery()
800
-    {
801
-        $query = $this->newPivotStatement();
802
-
803
-        $parentKey = $this->parentMap->getKeyName();
804
-
805
-        return $query->where($this->foreignKey, $this->parent->getEntityAttribute($parentKey));
806
-    }
807
-
808
-    /**
809
-     * Get a new plain query builder for the pivot table.
810
-     *
811
-     * @return \Illuminate\Database\Query\Builder
812
-     */
813
-    public function newPivotStatement()
814
-    {
815
-        return $this->query->getQuery()->newQuery()->from($this->table);
816
-    }
817
-
818
-    /**
819
-     * Get a new pivot statement for a given "other" ID.
820
-     *
821
-     * @param  mixed $id
822
-     *
823
-     * @throws \InvalidArgumentException
824
-     *
825
-     * @return \Illuminate\Database\Query\Builder
826
-     */
827
-    public function newPivotStatementForId($id)
828
-    {
829
-        $pivot = $this->newPivotStatement();
830
-
831
-        $parentKeyName = $this->parentMap->getKeyName();
832
-
833
-        $key = $this->parent->getEntityAttribute($parentKeyName);
834
-
835
-        return $pivot->where($this->foreignKey, $key)->where($this->otherKey, $id);
836
-    }
837
-
838
-    /**
839
-     * Create a new pivot model instance.
840
-     *
841
-     * @param  array $attributes
842
-     * @param  bool  $exists
843
-     * @return \Analogue\ORM\Relationships\Pivot
844
-     */
845
-    public function newPivot(array $attributes = [], $exists = false)
846
-    {
847
-        $pivot = new Pivot($this->parent, $this->parentMap, $attributes, $this->table, $exists);
792
+	/**
793
+	 * Create a new query builder for the pivot table.
794
+	 *
795
+	 * @throws \InvalidArgumentException
796
+	 *
797
+	 * @return \Illuminate\Database\Query\Builder
798
+	 */
799
+	protected function newPivotQuery()
800
+	{
801
+		$query = $this->newPivotStatement();
802
+
803
+		$parentKey = $this->parentMap->getKeyName();
804
+
805
+		return $query->where($this->foreignKey, $this->parent->getEntityAttribute($parentKey));
806
+	}
807
+
808
+	/**
809
+	 * Get a new plain query builder for the pivot table.
810
+	 *
811
+	 * @return \Illuminate\Database\Query\Builder
812
+	 */
813
+	public function newPivotStatement()
814
+	{
815
+		return $this->query->getQuery()->newQuery()->from($this->table);
816
+	}
817
+
818
+	/**
819
+	 * Get a new pivot statement for a given "other" ID.
820
+	 *
821
+	 * @param  mixed $id
822
+	 *
823
+	 * @throws \InvalidArgumentException
824
+	 *
825
+	 * @return \Illuminate\Database\Query\Builder
826
+	 */
827
+	public function newPivotStatementForId($id)
828
+	{
829
+		$pivot = $this->newPivotStatement();
830
+
831
+		$parentKeyName = $this->parentMap->getKeyName();
832
+
833
+		$key = $this->parent->getEntityAttribute($parentKeyName);
834
+
835
+		return $pivot->where($this->foreignKey, $key)->where($this->otherKey, $id);
836
+	}
837
+
838
+	/**
839
+	 * Create a new pivot model instance.
840
+	 *
841
+	 * @param  array $attributes
842
+	 * @param  bool  $exists
843
+	 * @return \Analogue\ORM\Relationships\Pivot
844
+	 */
845
+	public function newPivot(array $attributes = [], $exists = false)
846
+	{
847
+		$pivot = new Pivot($this->parent, $this->parentMap, $attributes, $this->table, $exists);
848 848
         
849
-        return $pivot->setPivotKeys($this->foreignKey, $this->otherKey);
850
-    }
851
-
852
-    /**
853
-     * Create a new existing pivot model instance.
854
-     *
855
-     * @param  array $attributes
856
-     * @return \Analogue\ORM\Relationships\Pivot
857
-     */
858
-    public function newExistingPivot(array $attributes = [])
859
-    {
860
-        return $this->newPivot($attributes, true);
861
-    }
862
-
863
-    /**
864
-     * Set the columns on the pivot table to retrieve.
865
-     *
866
-     * @param  array $columns
867
-     * @return $this
868
-     */
869
-    public function withPivot($columns)
870
-    {
871
-        $columns = is_array($columns) ? $columns : func_get_args();
872
-
873
-        $this->pivotColumns = array_merge($this->pivotColumns, $columns);
874
-
875
-        return $this;
876
-    }
877
-
878
-    /**
879
-     * Specify that the pivot table has creation and update timestamps.
880
-     *
881
-     * @param  mixed $createdAt
882
-     * @param  mixed $updatedAt
883
-     * @return \Analogue\ORM\Relationships\BelongsToMany
884
-     */
885
-    public function withTimestamps($createdAt = null, $updatedAt = null)
886
-    {
887
-        return $this->withPivot($createdAt ?: $this->createdAt(), $updatedAt ?: $this->updatedAt());
888
-    }
889
-
890
-    /**
891
-     * Get the key for comparing against the parent key in "has" query.
892
-     *
893
-     * @return string
894
-     */
895
-    public function getHasCompareKey()
896
-    {
897
-        return $this->getForeignKey();
898
-    }
899
-
900
-    /**
901
-     * Get the fully qualified foreign key for the relation.
902
-     *
903
-     * @return string
904
-     */
905
-    public function getForeignKey()
906
-    {
907
-        return $this->table . '.' . $this->foreignKey;
908
-    }
909
-
910
-    /**
911
-     * Get the fully qualified "other key" for the relation.
912
-     *
913
-     * @return string
914
-     */
915
-    public function getOtherKey()
916
-    {
917
-        return $this->table . '.' . $this->otherKey;
918
-    }
919
-
920
-    /**
921
-     * Get the fully qualified parent key name.
922
-     *
923
-     * @return string
924
-     */
925
-    protected function getQualifiedParentKeyName()
926
-    {
927
-        return $this->parentMap->getQualifiedKeyName();
928
-    }
929
-
930
-    /**
931
-     * Get the intermediate table for the relationship.
932
-     *
933
-     * @return string
934
-     */
935
-    public function getTable()
936
-    {
937
-        return $this->table;
938
-    }
939
-
940
-    /**
941
-     * Get the relationship name for the relationship.
942
-     *
943
-     * @return string
944
-     */
945
-    public function getRelationName()
946
-    {
947
-        return $this->relationName;
948
-    }
849
+		return $pivot->setPivotKeys($this->foreignKey, $this->otherKey);
850
+	}
851
+
852
+	/**
853
+	 * Create a new existing pivot model instance.
854
+	 *
855
+	 * @param  array $attributes
856
+	 * @return \Analogue\ORM\Relationships\Pivot
857
+	 */
858
+	public function newExistingPivot(array $attributes = [])
859
+	{
860
+		return $this->newPivot($attributes, true);
861
+	}
862
+
863
+	/**
864
+	 * Set the columns on the pivot table to retrieve.
865
+	 *
866
+	 * @param  array $columns
867
+	 * @return $this
868
+	 */
869
+	public function withPivot($columns)
870
+	{
871
+		$columns = is_array($columns) ? $columns : func_get_args();
872
+
873
+		$this->pivotColumns = array_merge($this->pivotColumns, $columns);
874
+
875
+		return $this;
876
+	}
877
+
878
+	/**
879
+	 * Specify that the pivot table has creation and update timestamps.
880
+	 *
881
+	 * @param  mixed $createdAt
882
+	 * @param  mixed $updatedAt
883
+	 * @return \Analogue\ORM\Relationships\BelongsToMany
884
+	 */
885
+	public function withTimestamps($createdAt = null, $updatedAt = null)
886
+	{
887
+		return $this->withPivot($createdAt ?: $this->createdAt(), $updatedAt ?: $this->updatedAt());
888
+	}
889
+
890
+	/**
891
+	 * Get the key for comparing against the parent key in "has" query.
892
+	 *
893
+	 * @return string
894
+	 */
895
+	public function getHasCompareKey()
896
+	{
897
+		return $this->getForeignKey();
898
+	}
899
+
900
+	/**
901
+	 * Get the fully qualified foreign key for the relation.
902
+	 *
903
+	 * @return string
904
+	 */
905
+	public function getForeignKey()
906
+	{
907
+		return $this->table . '.' . $this->foreignKey;
908
+	}
909
+
910
+	/**
911
+	 * Get the fully qualified "other key" for the relation.
912
+	 *
913
+	 * @return string
914
+	 */
915
+	public function getOtherKey()
916
+	{
917
+		return $this->table . '.' . $this->otherKey;
918
+	}
919
+
920
+	/**
921
+	 * Get the fully qualified parent key name.
922
+	 *
923
+	 * @return string
924
+	 */
925
+	protected function getQualifiedParentKeyName()
926
+	{
927
+		return $this->parentMap->getQualifiedKeyName();
928
+	}
929
+
930
+	/**
931
+	 * Get the intermediate table for the relationship.
932
+	 *
933
+	 * @return string
934
+	 */
935
+	public function getTable()
936
+	{
937
+		return $this->table;
938
+	}
939
+
940
+	/**
941
+	 * Get the relationship name for the relationship.
942
+	 *
943
+	 * @return string
944
+	 */
945
+	public function getRelationName()
946
+	{
947
+		return $this->relationName;
948
+	}
949 949
 }
Please login to merge, or discard this patch.
src/ValueMap.php 1 patch
Indentation   +55 added lines, -55 removed lines patch added patch discarded remove patch
@@ -4,67 +4,67 @@
 block discarded – undo
4 4
 
5 5
 class ValueMap
6 6
 {
7
-    /**
8
-     * @var string
9
-     */
10
-    protected $name;
7
+	/**
8
+	 * @var string
9
+	 */
10
+	protected $name;
11 11
 
12
-    /**
13
-     * @var string
14
-     */
15
-    protected $class;
12
+	/**
13
+	 * @var string
14
+	 */
15
+	protected $class;
16 16
 
17
-    /**
18
-     * @var array
19
-     */
20
-    protected $embeddables = [];
17
+	/**
18
+	 * @var array
19
+	 */
20
+	protected $embeddables = [];
21 21
 
22
-    /**
23
-     * @var array
24
-     */
25
-    protected $attributes = [];
22
+	/**
23
+	 * @var array
24
+	 */
25
+	protected $attributes = [];
26 26
 
27
-    /**
28
-     * @return array
29
-     */
30
-    public function getAttributes()
31
-    {
32
-        return $this->attributes;
33
-    }
27
+	/**
28
+	 * @return array
29
+	 */
30
+	public function getAttributes()
31
+	{
32
+		return $this->attributes;
33
+	}
34 34
 
35
-    /**
36
-     * @return array
37
-     */
38
-    public function getEmbeddables()
39
-    {
40
-        return $this->embeddables;
41
-    }
35
+	/**
36
+	 * @return array
37
+	 */
38
+	public function getEmbeddables()
39
+	{
40
+		return $this->embeddables;
41
+	}
42 42
 
43
-    /**
44
-     * @param $class
45
-     */
46
-    public function setClass($class)
47
-    {
48
-        $this->class = $class;
49
-    }
43
+	/**
44
+	 * @param $class
45
+	 */
46
+	public function setClass($class)
47
+	{
48
+		$this->class = $class;
49
+	}
50 50
 
51
-    /**
52
-     * @return mixed
53
-     */
54
-    public function getClass()
55
-    {
56
-        return $this->class;
57
-    }
51
+	/**
52
+	 * @return mixed
53
+	 */
54
+	public function getClass()
55
+	{
56
+		return $this->class;
57
+	}
58 58
 
59
-    /**
60
-     * @return string
61
-     */
62
-    public function getName()
63
-    {
64
-        if (isset($this->name)) {
65
-            return $this->name;
66
-        } else {
67
-            return class_basename($this);
68
-        }
69
-    }
59
+	/**
60
+	 * @return string
61
+	 */
62
+	public function getName()
63
+	{
64
+		if (isset($this->name)) {
65
+			return $this->name;
66
+		} else {
67
+			return class_basename($this);
68
+		}
69
+	}
70 70
 }
Please login to merge, or discard this patch.
src/Drivers/IlluminateConnectionProvider.php 1 patch
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -6,28 +6,28 @@
 block discarded – undo
6 6
 
7 7
 class IlluminateConnectionProvider
8 8
 {
9
-    /**
10
-     * @var DatabaseManager
11
-     */
12
-    protected $db;
9
+	/**
10
+	 * @var DatabaseManager
11
+	 */
12
+	protected $db;
13 13
 
14
-    /**
15
-     * IlluminateConnectionProvider constructor.
16
-     * @param DatabaseManager $db
17
-     */
18
-    public function __construct(DatabaseManager $db)
19
-    {
20
-        $this->db = $db;
21
-    }
14
+	/**
15
+	 * IlluminateConnectionProvider constructor.
16
+	 * @param DatabaseManager $db
17
+	 */
18
+	public function __construct(DatabaseManager $db)
19
+	{
20
+		$this->db = $db;
21
+	}
22 22
 
23
-    /**
24
-     * Get a Database connection object
25
-     *
26
-     * @param  $name
27
-     * @return \Illuminate\Database\Connection
28
-     */
29
-    public function connection($name = null)
30
-    {
31
-        return $this->db->connection($name);
32
-    }
23
+	/**
24
+	 * Get a Database connection object
25
+	 *
26
+	 * @param  $name
27
+	 * @return \Illuminate\Database\Connection
28
+	 */
29
+	public function connection($name = null)
30
+	{
31
+		return $this->db->connection($name);
32
+	}
33 33
 }
Please login to merge, or discard this patch.
src/Drivers/Manager.php 1 patch
Indentation   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -4,32 +4,32 @@
 block discarded – undo
4 4
 
5 5
 class Manager
6 6
 {
7
-    /**
8
-     * @var DriverInterface[]
9
-     */
10
-    protected $drivers = [];
7
+	/**
8
+	 * @var DriverInterface[]
9
+	 */
10
+	protected $drivers = [];
11 11
 
12
-    /**
13
-     * Add a Mapping Driver
14
-     *
15
-     * @param DriverInterface $driver
16
-     */
17
-    public function addDriver(DriverInterface $driver)
18
-    {
19
-        $this->drivers[$driver->getName()] = $driver;
20
-    }
12
+	/**
13
+	 * Add a Mapping Driver
14
+	 *
15
+	 * @param DriverInterface $driver
16
+	 */
17
+	public function addDriver(DriverInterface $driver)
18
+	{
19
+		$this->drivers[$driver->getName()] = $driver;
20
+	}
21 21
 
22
-    /**
23
-     * Get the DBAdapter
24
-     *
25
-     * @param  string $driver
26
-     * @param  string $connection connection name for drivers supporting multiple connection.
27
-     * @return DriverInterface|void
28
-     */
29
-    public function getAdapter($driver, $connection = null)
30
-    {
31
-        if (array_key_exists($driver, $this->drivers)) {
32
-            return $this->drivers[$driver]->getAdapter($connection);
33
-        }
34
-    }
22
+	/**
23
+	 * Get the DBAdapter
24
+	 *
25
+	 * @param  string $driver
26
+	 * @param  string $connection connection name for drivers supporting multiple connection.
27
+	 * @return DriverInterface|void
28
+	 */
29
+	public function getAdapter($driver, $connection = null)
30
+	{
31
+		if (array_key_exists($driver, $this->drivers)) {
32
+			return $this->drivers[$driver]->getAdapter($connection);
33
+		}
34
+	}
35 35
 }
Please login to merge, or discard this patch.