Completed
Push — master ( 45e3f3...934bb8 )
by Dave
03:07 queued 30s
created
src/Model/Model.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -442,7 +442,7 @@  discard block
 block discarded – undo
442 442
      * find one match based on a single field and match criteria
443 443
      *
444 444
      * @param string       $fieldname
445
-     * @param string|array $match
445
+     * @param string $match
446 446
      * @param string       $order ASC|DESC
447 447
      * @return object of calling class
448 448
      */
@@ -459,7 +459,7 @@  discard block
 block discarded – undo
459 459
      * find multiple matches based on a single field and match criteria
460 460
      *
461 461
      * @param string       $fieldname
462
-     * @param string|array $match
462
+     * @param string $match
463 463
      * @return object[] of objects of calling class
464 464
      */
465 465
     public static function fetchAllWhereMatchingSingleField( $fieldname, $match ) {
Please login to merge, or discard this patch.
tests/Model/CategoryTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
      *
45 45
      */
46 46
     public static function tearDownAfterClass() {
47
-        Freshsauce\Model\Model::execute( 'DROP DATABASE IF EXISTS `categorytest`' );
47
+        Freshsauce\Model\Model::execute('DROP DATABASE IF EXISTS `categorytest`');
48 48
     }
49 49
 
50 50
     /**
Please login to merge, or discard this patch.