@@ -6,13 +6,13 @@ discard block |
||
6 | 6 | * @param string $class The fully-qualified class name. |
7 | 7 | * @return void |
8 | 8 | */ |
9 | -spl_autoload_register(function ($class) { |
|
9 | +spl_autoload_register(function($class) { |
|
10 | 10 | |
11 | 11 | // project-specific namespace prefix |
12 | 12 | $prefix = 'Hborras\\TwitterAdsSDK\\'; |
13 | 13 | |
14 | 14 | // base directory for the namespace prefix |
15 | - $base_dir = __DIR__ . '/src/'; |
|
15 | + $base_dir = __DIR__.'/src/'; |
|
16 | 16 | |
17 | 17 | // does the class use the namespace prefix? |
18 | 18 | $len = strlen($prefix); |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | // replace the namespace prefix with the base directory, replace namespace |
28 | 28 | // separators with directory separators in the relative class name, append |
29 | 29 | // with .php |
30 | - $file = $base_dir . str_replace('\\', '/', $relative_class) . '.php'; |
|
30 | + $file = $base_dir.str_replace('\\', '/', $relative_class).'.php'; |
|
31 | 31 | |
32 | 32 | // if the file exists, require it |
33 | 33 | if (file_exists($file)) { |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | { |
17 | 17 | $output = ''; |
18 | 18 | if (is_array($input)) { |
19 | - $output = array_map([__NAMESPACE__ . '\Util', 'urlencodeRfc3986'], $input); |
|
19 | + $output = array_map([__NAMESPACE__.'\Util', 'urlencodeRfc3986'], $input); |
|
20 | 20 | } elseif (is_scalar($input)) { |
21 | 21 | $output = rawurlencode($input); |
22 | 22 | } |
@@ -104,10 +104,10 @@ discard block |
||
104 | 104 | // June 12th, 2010 - changed to sort because of issue 164 by hidetaka |
105 | 105 | sort($value, SORT_STRING); |
106 | 106 | foreach ($value as $duplicateValue) { |
107 | - $pairs[] = $parameter . '=' . $duplicateValue; |
|
107 | + $pairs[] = $parameter.'='.$duplicateValue; |
|
108 | 108 | } |
109 | 109 | } else { |
110 | - $pairs[] = $parameter . '=' . $value; |
|
110 | + $pairs[] = $parameter.'='.$value; |
|
111 | 111 | } |
112 | 112 | } |
113 | 113 | // For each parameter, the name is separated from the corresponding value by an '=' character (ASCII code 61) |
@@ -34,8 +34,8 @@ discard block |
||
34 | 34 | */ |
35 | 35 | public function setTimeouts($connectionTimeout, $timeout) |
36 | 36 | { |
37 | - $this->connectionTimeout = (int)$connectionTimeout; |
|
38 | - $this->timeout = (int)$timeout; |
|
37 | + $this->connectionTimeout = (int) $connectionTimeout; |
|
38 | + $this->timeout = (int) $timeout; |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | /** |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | */ |
44 | 44 | public function setDecodeJsonAsArray($value) |
45 | 45 | { |
46 | - $this->decodeJsonAsArray = (bool)$value; |
|
46 | + $this->decodeJsonAsArray = (bool) $value; |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | /** |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | */ |
52 | 52 | public function setUserAgent($userAgent) |
53 | 53 | { |
54 | - $this->userAgent = (string)$userAgent; |
|
54 | + $this->userAgent = (string) $userAgent; |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | /** |
@@ -178,7 +178,7 @@ discard block |
||
178 | 178 | $postData = $this->toPostdata(); |
179 | 179 | $out = $this->getNormalizedHttpUrl(); |
180 | 180 | if ($postData) { |
181 | - $out .= '?' . $postData; |
|
181 | + $out .= '?'.$postData; |
|
182 | 182 | } |
183 | 183 | |
184 | 184 | return $out; |
@@ -213,7 +213,7 @@ discard block |
||
213 | 213 | throw new TwitterOAuthException('Arrays not supported in headers'); |
214 | 214 | } |
215 | 215 | $out .= ($first) ? ' ' : ', '; |
216 | - $out .= Util::urlencodeRfc3986($k) . '="' . Util::urlencodeRfc3986($v) . '"'; |
|
216 | + $out .= Util::urlencodeRfc3986($k).'="'.Util::urlencodeRfc3986($v).'"'; |
|
217 | 217 | $first = false; |
218 | 218 | } |
219 | 219 | |
@@ -257,6 +257,6 @@ discard block |
||
257 | 257 | */ |
258 | 258 | public static function generateNonce() |
259 | 259 | { |
260 | - return md5(microtime() . mt_rand()); |
|
260 | + return md5(microtime().mt_rand()); |
|
261 | 261 | } |
262 | 262 | } |
@@ -15,8 +15,8 @@ |
||
15 | 15 | const APPROVAL_STATUS = 'approval_status'; |
16 | 16 | const LINE_ITEM_ID = 'line_item_id'; |
17 | 17 | const TWEET_ID = 'tweet_id'; |
18 | - const SCHEDULED_TWEET_IDS = 'scheduled_tweet_ids'; |
|
19 | - const SCHEDULED_TWEET_ID = 'scheduled_tweet_id'; |
|
18 | + const SCHEDULED_TWEET_IDS = 'scheduled_tweet_ids'; |
|
19 | + const SCHEDULED_TWEET_ID = 'scheduled_tweet_id'; |
|
20 | 20 | const ENTITY_STATUS = 'entity_status'; |
21 | 21 | const PROMOTED_TWEET_IDS = 'promoted_tweet_ids'; |
22 | 22 | const LINE_ITEM_IDS = 'line_item_ids'; |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | |
58 | 58 | // create request for a simple nullcasted tweet |
59 | 59 | $media = $api->upload(['media' => 'kitten.jpg']); |
60 | -$tweet1 = Tweet::create($account, 'Tweet number 1 ...' . rand() . ' http://twitter.com', ['media_ids' => $media->media_id]); |
|
60 | +$tweet1 = Tweet::create($account, 'Tweet number 1 ...'.rand().' http://twitter.com', ['media_ids' => $media->media_id]); |
|
61 | 61 | |
62 | 62 | // promote the tweet using our line item |
63 | 63 | $promotedTweet = new PromotedTweet(); |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | // create request for a nullcasted tweet with a website card |
69 | 69 | $websiteCard = new WebsiteCard(); |
70 | 70 | $websiteCard = $websiteCard->all()->getCollection()[0]; |
71 | -$status = 'Tweet number 2 ...' . rand(); |
|
71 | +$status = 'Tweet number 2 ...'.rand(); |
|
72 | 72 | |
73 | 73 | $tweet2 = Tweet::create($account, $status, [TweetFields::CARD_URI => $websiteCard->getCardUri()]); |
74 | 74 |
@@ -26,4 +26,4 @@ |
||
26 | 26 | |
27 | 27 | // create request for a simple nullcasted tweet |
28 | 28 | $media = $api->upload(['media' => 'kitten.jpg', 'media_type' => 'image/jpg'], true); |
29 | -$tweet = Tweet::create($account, 'Tweet with chunked upload GIF...' . rand() . ' http://twitter.com', ['media_ids' => $media->media_id]); |
|
30 | 29 | \ No newline at end of file |
30 | +$tweet = Tweet::create($account, 'Tweet with chunked upload GIF...'.rand().' http://twitter.com', ['media_ids' => $media->media_id]); |
|
31 | 31 | \ No newline at end of file |
@@ -9,7 +9,7 @@ |
||
9 | 9 | const UPDATED_AT = 'updated_at'; |
10 | 10 | const DELETED = 'delete'; |
11 | 11 | const NAME = 'name'; |
12 | - const COUNTRY_CODE = 'country_code'; |
|
12 | + const COUNTRY_CODE = 'country_code'; |
|
13 | 13 | const IPHONE_APP_ID = 'iphone_app_id'; |
14 | 14 | const IPHONE_DEEP_LINK = 'iphone_deep_link'; |
15 | 15 | const IPAD_APP_ID = 'ipad_app_id'; |
@@ -36,23 +36,23 @@ discard block |
||
36 | 36 | $j = 1; |
37 | 37 | $l = 1; |
38 | 38 | foreach ($campaignsData as $campaign) { |
39 | - echo $i . ': ' . $campaign->getId() . ' ' . $campaign->getName() . ' ' . $campaign->getStartTime()->format('Y-m-d') . ' - ' . $campaign->getEntityStatus() . PHP_EOL; |
|
39 | + echo $i.': '.$campaign->getId().' '.$campaign->getName().' '.$campaign->getStartTime()->format('Y-m-d').' - '.$campaign->getEntityStatus().PHP_EOL; |
|
40 | 40 | $lineItems = $campaign->getLineItems([TwitterAds\Fields\LineItemFields::COUNT => 2]); |
41 | 41 | /** @var LineItem $lineItem */ |
42 | 42 | foreach ($lineItems as $lineItem) { |
43 | - echo "\t" . $j . ': ' . $lineItem->getId() . ' ' . $lineItem->getName() . ' ' . PHP_EOL; |
|
44 | - echo "\t\tBid: " . ($lineItem->getBidAmountLocalMicro() / 1000000) . PHP_EOL; |
|
45 | - echo "\t\tObjective: " . $lineItem->getObjective() . PHP_EOL; |
|
46 | - echo "\t\tCharge By: " . $lineItem->getChargeBy() . PHP_EOL; |
|
47 | - echo "\t\tBid Unit: " . $lineItem->getBidUnit() . PHP_EOL; |
|
48 | - echo "\t\tOptimization: " . $lineItem->getOptimization() . PHP_EOL; |
|
49 | - echo "\t\tBid Type: " . $lineItem->getBidType() . PHP_EOL; |
|
43 | + echo "\t".$j.': '.$lineItem->getId().' '.$lineItem->getName().' '.PHP_EOL; |
|
44 | + echo "\t\tBid: ".($lineItem->getBidAmountLocalMicro() / 1000000).PHP_EOL; |
|
45 | + echo "\t\tObjective: ".$lineItem->getObjective().PHP_EOL; |
|
46 | + echo "\t\tCharge By: ".$lineItem->getChargeBy().PHP_EOL; |
|
47 | + echo "\t\tBid Unit: ".$lineItem->getBidUnit().PHP_EOL; |
|
48 | + echo "\t\tOptimization: ".$lineItem->getOptimization().PHP_EOL; |
|
49 | + echo "\t\tBid Type: ".$lineItem->getBidType().PHP_EOL; |
|
50 | 50 | $targetingCriterias = $lineItem->getTargetingCriteria(); |
51 | 51 | /** @var TwitterAds\Campaign\TargetingCriteria $targetingCriteria */ |
52 | 52 | foreach ($targetingCriterias as $targetingCriteria) { |
53 | - echo "\t\t" . $l . ': ' . $targetingCriteria->getId() . ' ' . $targetingCriteria->getName() . ' ' . |
|
53 | + echo "\t\t".$l.': '.$targetingCriteria->getId().' '.$targetingCriteria->getName().' '. |
|
54 | 54 | |
55 | - $targetingCriteria->getTargetingType() . ' ' . $targetingCriteria->getTargetingValue() . PHP_EOL; |
|
55 | + $targetingCriteria->getTargetingType().' '.$targetingCriteria->getTargetingValue().PHP_EOL; |
|
56 | 56 | |
57 | 57 | $l++; |
58 | 58 | } |
@@ -78,14 +78,14 @@ discard block |
||
78 | 78 | ); |
79 | 79 | $stats = $stats[0]->id_data[0]->metrics; |
80 | 80 | if (!is_null($stats->billed_charge_local_micro)) { |
81 | - echo "\t\t\t Start: " . $date[0]->format('Y-m-d H:i:s') . PHP_EOL; |
|
82 | - echo "\t\t\t End: " . $date[1]->format('Y-m-d H:i:s') . PHP_EOL; |
|
83 | - echo "\t\t\t " . ($stats->billed_charge_local_micro[0] / 1000000) . '€' . PHP_EOL; |
|
81 | + echo "\t\t\t Start: ".$date[0]->format('Y-m-d H:i:s').PHP_EOL; |
|
82 | + echo "\t\t\t End: ".$date[1]->format('Y-m-d H:i:s').PHP_EOL; |
|
83 | + echo "\t\t\t ".($stats->billed_charge_local_micro[0] / 1000000).'€'.PHP_EOL; |
|
84 | 84 | echo "\t\t\t\t App clicks: "; |
85 | 85 | getStats($stats->app_clicks); |
86 | - echo "\t\t\t\t Installs:" . PHP_EOL; |
|
86 | + echo "\t\t\t\t Installs:".PHP_EOL; |
|
87 | 87 | getStats($stats->mobile_conversion_installs); |
88 | - echo "\t\t\t\t Checkouts:" . PHP_EOL; |
|
88 | + echo "\t\t\t\t Checkouts:".PHP_EOL; |
|
89 | 89 | getStats($stats->mobile_conversion_checkouts_initiated); |
90 | 90 | } |
91 | 91 | } |
@@ -105,14 +105,14 @@ discard block |
||
105 | 105 | if ($stat instanceof stdClass) { |
106 | 106 | foreach (get_object_vars($stat) as $key => $val) { |
107 | 107 | if (is_array($val)) { |
108 | - echo "\t\t\t\t\t " . $key . ': ' . $val[0] . PHP_EOL; |
|
108 | + echo "\t\t\t\t\t ".$key.': '.$val[0].PHP_EOL; |
|
109 | 109 | } else { |
110 | - echo "\t\t\t\t\t " . $key . ' 0' . PHP_EOL; |
|
110 | + echo "\t\t\t\t\t ".$key.' 0'.PHP_EOL; |
|
111 | 111 | } |
112 | 112 | } |
113 | 113 | } else if (is_array($stat)) { |
114 | 114 | foreach ($stat as $s) { |
115 | - echo $s . PHP_EOL; |
|
115 | + echo $s.PHP_EOL; |
|
116 | 116 | } |
117 | 117 | } |
118 | 118 |