Completed
Push — master ( c23590...8ff253 )
by
unknown
02:59
created
src/FacebookAds/Object/TargetingSearch.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,8 +41,8 @@
 block discarded – undo
41 41
    */
42 42
   public static function search(
43 43
     $type,
44
-    $class=null,
45
-    $query=null,
44
+    $class = null,
45
+    $query = null,
46 46
     array $params = array(),
47 47
     Api $api = null) {
48 48
 
Please login to merge, or discard this patch.
src/FacebookAds/Object/Values/AdAccountRoles.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
  */
32 32
 class AdAccountRoles extends AbstractEnum {
33 33
 
34
-  const ADMIN  = 'ADMIN';
34
+  const ADMIN = 'ADMIN';
35 35
   const GENERAL_USER = 'GENERAL_USER';
36 36
   const REPORTS_ONLY = 'REPORTS_ONLY';
37 37
 }
Please login to merge, or discard this patch.
src/FacebookAds/Object/Values/AdObjectives.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,13 +32,13 @@
 block discarded – undo
32 32
 class AdObjectives extends AbstractEnum {
33 33
 
34 34
   const CANVAS_APP_ENGAGEMENT = 'CANVAS_APP_ENGAGEMENT';
35
-  const CANVAS_APP_INSTALLS  = 'CANVAS_APP_INSTALLS';
35
+  const CANVAS_APP_INSTALLS = 'CANVAS_APP_INSTALLS';
36 36
   const EVENT_RESPONSES = 'EVENT_RESPONSES';
37 37
   const LOCAL_AWARENESS = 'LOCAL_AWARENESS';
38 38
   const MOBILE_APP_ENGAGEMENT = 'MOBILE_APP_ENGAGEMENT';
39 39
   const MOBILE_APP_INSTALLS = 'MOBILE_APP_INSTALLS';
40
-  const NONE  = 'NONE';
41
-  const OFFER_CLAIMS  = 'OFFER_CLAIMS';
40
+  const NONE = 'NONE';
41
+  const OFFER_CLAIMS = 'OFFER_CLAIMS';
42 42
   const PAGE_LIKES = 'PAGE_LIKES';
43 43
   const POST_ENGAGEMENT = 'POST_ENGAGEMENT';
44 44
   const PRODUCT_CATALOG_SALES = 'PRODUCT_CATALOG_SALES';
Please login to merge, or discard this patch.
src/FacebookAds/Object/Values/AppRoles.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
  */
32 32
 class AppRoles extends AbstractEnum {
33 33
 
34
-  const ADMINISTRATOR  = 'ADMINISTRATOR';
34
+  const ADMINISTRATOR = 'ADMINISTRATOR';
35 35
   const DEVELOPER = 'DEVELOPER';
36 36
   const TESTER = 'TESTER';
37 37
   const INSIGHTS_USER = 'INSIGHTS_USER';
Please login to merge, or discard this patch.
src/FacebookAds/Object/Values/FeedEncoding.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
  */
32 32
 class FeedEncoding extends AbstractEnum {
33 33
 
34
-  const AUTODETECT  = 'AUTODETECT';
34
+  const AUTODETECT = 'AUTODETECT';
35 35
   const ASCII = 'ASCII';
36 36
   const UTF_8 = 'UTF_8';
37 37
   const UTF_16 = 'UTF_16';
Please login to merge, or discard this patch.
src/FacebookAds/Object/Values/PageRoles.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
  */
32 32
 class PageRoles extends AbstractEnum {
33 33
 
34
-  const ADVERTISER  = 'ADVERTISER';
34
+  const ADVERTISER = 'ADVERTISER';
35 35
   const CONTENT_CREATOR = 'CONTENT_CREATOR';
36 36
   const MANAGER = 'MANAGER';
37 37
   const MODERATOR = 'MODERATOR';
Please login to merge, or discard this patch.
src/FacebookAds/Object/Values/TermsOfService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
  */
32 32
 class TermsOfService extends AbstractEnum {
33 33
 
34
-  const CUSTOM_AUDIENCE  = 'custom_audience';
34
+  const CUSTOM_AUDIENCE = 'custom_audience';
35 35
   const WEBSITE_CUSTOM_AUDIENCE = 'website_custom_audience';
36 36
   const MOBILE_APP_CUSTOM_AUDIENCE = 'mobile_app_custom_audience';
37 37
 }
Please login to merge, or discard this patch.
src/FacebookAds/Object/Values/UserPermissionRoles.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,6 +31,6 @@
 block discarded – undo
31 31
  */
32 32
 class UserPermissionRoles extends AbstractEnum {
33 33
 
34
-  const ADMIN  = 'ADMIN';
35
-  const EMPLOYEE  = 'EMPLOYEE';
34
+  const ADMIN = 'ADMIN';
35
+  const EMPLOYEE = 'EMPLOYEE';
36 36
 }
Please login to merge, or discard this patch.
src/FacebookAds/Object/AdAccount.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -415,7 +415,7 @@
 block discarded – undo
415 415
    * @param array $params
416 416
    * @return Cursor
417 417
    */
418
-  public function getCustomConversions (
418
+  public function getCustomConversions(
419 419
     array $fields = array(), array $params = array()) {
420 420
     return $this->getManyByConnection(
421 421
       CustomConversion::className(), $fields, $params);
Please login to merge, or discard this patch.