Completed
Pull Request — master (#15)
by Marc
02:43
created
Test/test_app/Model/Behavior/QueryCounterBehavior.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  *
10 10
  * @param Model $model Model
11 11
  * @param array $query Query
12
- * @return mixed
12
+ * @return boolean
13 13
  */
14 14
 	public function beforeFind(Model $model, $query) {
15 15
 		$db = $model->getDataSource();
Please login to merge, or discard this patch.
Model/EagerLoader.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * EagerLoader class
4
- *
5
- * @internal
6
- */
3
+	 * EagerLoader class
4
+	 *
5
+	 * @internal
6
+	 */
7 7
 class EagerLoader {
8 8
 
9 9
 	private static $handlers = array(); // @codingStandardsIgnoreLine
Please login to merge, or discard this patch.
Model/EagerLoaderModel.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * EagerLoaderModel class
4
- *
5
- * @internal
6
- */
3
+	 * EagerLoaderModel class
4
+	 *
5
+	 * @internal
6
+	 */
7 7
 class EagerLoaderModel extends Model {
8 8
 
9 9
 	public $useTable = false;
Please login to merge, or discard this patch.
Test/Case/AllEagerLoaderTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * All EagerLoader plugin tests
4
- */
3
+	 * All EagerLoader plugin tests
4
+	 */
5 5
 class AllEagerLoaderTest extends PHPUnit_Framework_TestSuite {
6 6
 
7 7
 /**
Please login to merge, or discard this patch.
Test/test_app/Model/AppModel.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * AppModel for testing
4
- */
3
+	 * AppModel for testing
4
+	 */
5 5
 class AppModel extends CakeTestModel {
6 6
 
7 7
 	public $actsAs = array(
Please login to merge, or discard this patch.
Test/test_app/Model/Article.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Article for testing
4
- */
3
+	 * Article for testing
4
+	 */
5 5
 class Article extends AppModel {
6 6
 
7 7
 	public $hasMany = array('Comment', 'ExternalComment');
Please login to merge, or discard this patch.
Test/test_app/Model/Attachment.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Attachment for testing
4
- */
3
+	 * Attachment for testing
4
+	 */
5 5
 class Attachment extends AppModel {
6 6
 
7 7
 	public $displayField = 'attachment';
Please login to merge, or discard this patch.
Test/test_app/Model/Comment.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Comment for testing
4
- */
3
+	 * Comment for testing
4
+	 */
5 5
 class Comment extends AppModel {
6 6
 
7 7
 	public $displayField = 'comment';
Please login to merge, or discard this patch.