phpcs fixes
authoreileenmcnaugton <eileen@fuzion.co.nz>
Sat, 22 Aug 2015 08:33:55 +0000 (20:33 +1200)
committereileenmcnaugton <eileen@fuzion.co.nz>
Sat, 22 Aug 2015 08:38:20 +0000 (20:38 +1200)
api/v3/Contact.php
tests/phpunit/api/v3/ContactTest.php

index aa9ce567c8623132825d23e8ad1eb889b0d95342..9e9f754cd9afb160dfaf24823b40175f66dcc4e2 100644 (file)
@@ -853,7 +853,7 @@ function civicrm_api3_contact_getquick($params) {
       if (!in_array('email', $list)) {
         $includeEmailFrom = "LEFT JOIN civicrm_email eml ON ( cc.id = eml.contact_id AND eml.is_primary = 1 )";
       }
-      $emailWhere =  " WHERE email LIKE '$strSearch'";
+      $emailWhere = " WHERE email LIKE '$strSearch'";
     }
   }
 
@@ -912,7 +912,7 @@ function civicrm_api3_contact_getquick($params) {
       )
     ";
   }
-  $query .=") t
+  $query .= ") t
     {$orderByOuter}
     LIMIT    0, {$limit}
   ";
index cef189c5ff8f1b20da6cfe82a0cdb01435dd04ea..a892a89561b9a420bfcef11414606e93323c185e 100644 (file)
@@ -2267,7 +2267,7 @@ class api_v3_ContactTest extends CiviUnitTestCase {
     $expected = array(
       'Bob, Bob',
       'A Bobby, Bobby',
-      'B Bobby, Bobby'
+      'B Bobby, Bobby',
     );
 
     foreach ($expected as $index => $value) {
@@ -2305,16 +2305,26 @@ class api_v3_ContactTest extends CiviUnitTestCase {
     $contacts = array(
       array('first_name' => 'Bob', 'last_name' => 'Bob', 'external_identifier' => 'abc', 'email' => 'bob@bob.com'),
       array('first_name' => 'Bobby', 'last_name' => 'A Bobby', 'external_identifier' => 'abcd'),
-      array('first_name' => 'Bobby', 'last_name' => 'B Bobby', 'external_identifier' => 'bcd', 'api.address.create' => array(
-        'street_address' => 'Sesame Street',
-        'city' => 'Toronto',
-        'location_type_id' => 1,
-      ),),
-      array('first_name' => 'Bobby', 'last_name' => 'C Bobby', 'external_identifier' => 'bcde',  'api.address.create' => array(
-        'street_address' => 'Te huarahi',
-        'city' => 'Whanganui',
-        'location_type_id' => 1,
-      ),),
+      array(
+        'first_name' => 'Bobby',
+        'last_name' => 'B Bobby',
+        'external_identifier' => 'bcd',
+        'api.address.create' => array(
+          'street_address' => 'Sesame Street',
+          'city' => 'Toronto',
+          'location_type_id' => 1,
+        ),
+      ),
+      array(
+        'first_name' => 'Bobby',
+        'last_name' => 'C Bobby',
+        'external_identifier' => 'bcde',
+        'api.address.create' => array(
+          'street_address' => 'Te huarahi',
+          'city' => 'Whanganui',
+          'location_type_id' => 1,
+        ),
+      ),
       array('first_name' => 'Bobby', 'last_name' => 'D Bobby', 'external_identifier' => 'efg'),
       array('first_name' => 'Bobby', 'last_name' => 'E Bobby', 'external_identifier' => 'hij', 'email' => 'bob@bobby.com'),
       array('first_name' => 'Bobby', 'last_name' => 'F Bobby', 'external_identifier' => 'klm'),