Completed
Push — master ( 6a1e13...a0ceb6 )
by Daniel
08:25
created
model/base_entity.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- *
4
- * @package sitemaker
5
- * @copyright (c) 2015 Daniel A. (blitze)
6
- * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
7
- *
8
- */
3
+	 *
4
+	 * @package sitemaker
5
+	 * @copyright (c) 2015 Daniel A. (blitze)
6
+	 * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
7
+	 *
8
+	 */
9 9
 
10 10
 namespace blitze\sitemaker\model;
11 11
 
@@ -52,8 +52,8 @@  discard block
 block discarded – undo
52 52
 	}
53 53
 
54 54
 	/**
55
-	* {@inheritdoc}
56
-	*/
55
+	 * {@inheritdoc}
56
+	 */
57 57
 	public function to_array()
58 58
 	{
59 59
 		$attributes = $this->_get_attributes();
@@ -70,8 +70,8 @@  discard block
 block discarded – undo
70 70
 	}
71 71
 
72 72
 	/**
73
-	* {@inheritdoc}
74
-	*/
73
+	 * {@inheritdoc}
74
+	 */
75 75
 	public function to_db()
76 76
 	{
77 77
 		$this->_check_required();
Please login to merge, or discard this patch.
model/base_mapper.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- *
4
- * @package sitemaker
5
- * @copyright (c) 2015 Daniel A. (blitze)
6
- * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
7
- *
8
- */
3
+	 *
4
+	 * @package sitemaker
5
+	 * @copyright (c) 2015 Daniel A. (blitze)
6
+	 * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
7
+	 *
8
+	 */
9 9
 
10 10
 namespace blitze\sitemaker\model;
11 11
 
@@ -56,8 +56,8 @@  discard block
 block discarded – undo
56 56
 	}
57 57
 
58 58
 	/**
59
-	* {@inheritdoc}
60
-	*/
59
+	 * {@inheritdoc}
60
+	 */
61 61
 	public function load(array $condition = array())
62 62
 	{
63 63
 		$sql_where = $this->_get_condition($condition);
@@ -73,8 +73,8 @@  discard block
 block discarded – undo
73 73
 	}
74 74
 
75 75
 	/**
76
-	* {@inheritdoc}
77
-	*/
76
+	 * {@inheritdoc}
77
+	 */
78 78
 	public function find(array $condition = array())
79 79
 	{
80 80
 		$sql_where = $this->_get_condition($condition);
@@ -91,8 +91,8 @@  discard block
 block discarded – undo
91 91
 	}
92 92
 
93 93
 	/**
94
-	* {@inheritdoc}
95
-	*/
94
+	 * {@inheritdoc}
95
+	 */
96 96
 	public function save(\blitze\sitemaker\model\entity_interface $entity)
97 97
 	{
98 98
 		$accessor = 'get_' . $this->_entity_pkey;
@@ -109,8 +109,8 @@  discard block
 block discarded – undo
109 109
 	}
110 110
 
111 111
 	/**
112
-	* {@inheritdoc}
113
-	*/
112
+	 * {@inheritdoc}
113
+	 */
114 114
 	public function delete($condition)
115 115
 	{
116 116
 		if ($condition instanceof $this->_entity_class)
Please login to merge, or discard this patch.