@@ -47,39 +47,39 @@ |
||
47 | 47 | public static function setDefaultSnippets() |
48 | 48 | { |
49 | 49 | self::setSnippets(array( |
50 | - 'sBody' => 'style="font-family: Arial, Helvetica, sans-serif; ' . |
|
51 | - 'background-color:#343b43; ' . |
|
52 | - 'font-size: 15px; margin:0; ' . |
|
50 | + 'sBody' => 'style="font-family: Arial, Helvetica, sans-serif; '. |
|
51 | + 'background-color:#343b43; '. |
|
52 | + 'font-size: 15px; margin:0; '. |
|
53 | 53 | 'padding:0;"', |
54 | - 'sTableHeader' => 'style="width:100%; ' . |
|
55 | - 'font-family: Arial, Helvetica, sans-serif; ' . |
|
56 | - 'margin:0; color:#e6e6e6;" ' . |
|
54 | + 'sTableHeader' => 'style="width:100%; '. |
|
55 | + 'font-family: Arial, Helvetica, sans-serif; '. |
|
56 | + 'margin:0; color:#e6e6e6;" '. |
|
57 | 57 | 'align="center" cellpadding="5" cellspacing="0"', |
58 | - 'sTableError' => 'style="width:100%; ' . |
|
59 | - 'background-color:#e6e6e6; ' . |
|
60 | - 'margin:0 auto 15px; ' . |
|
61 | - 'border:1px solid #011516;" ' . |
|
58 | + 'sTableError' => 'style="width:100%; '. |
|
59 | + 'background-color:#e6e6e6; '. |
|
60 | + 'margin:0 auto 15px; '. |
|
61 | + 'border:1px solid #011516;" '. |
|
62 | 62 | 'align="center" cellpadding="5" cellspacing="0"', |
63 | - 'sTableErrorCol' => 'style="border-top: 1px solid #f6f6f6; ' . |
|
63 | + 'sTableErrorCol' => 'style="border-top: 1px solid #f6f6f6; '. |
|
64 | 64 | 'border-bottom: 1px solid #c9c9c9;"', |
65 | - 'sTableContent' => 'style="width:380px; ' . |
|
66 | - 'font-family: Arial, Helvetica, sans-serif; ' . |
|
67 | - 'margin:0 auto;" ' . |
|
65 | + 'sTableContent' => 'style="width:380px; '. |
|
66 | + 'font-family: Arial, Helvetica, sans-serif; '. |
|
67 | + 'margin:0 auto;" '. |
|
68 | 68 | 'align="center" cellpadding="0" cellspacing="0"', |
69 | 69 | 'sTableContentCol' => 'style="padding:0 10px;"', |
70 | - 'sTableStatus' => 'style="background-color:#%s; ' . |
|
71 | - 'width:100%%; ' . |
|
72 | - 'margin:0 auto 15px; ' . |
|
73 | - 'border:1px solid #011516;" ' . |
|
70 | + 'sTableStatus' => 'style="background-color:#%s; '. |
|
71 | + 'width:100%%; '. |
|
72 | + 'margin:0 auto 15px; '. |
|
73 | + 'border:1px solid #011516;" '. |
|
74 | 74 | 'align="center" cellpadding="10" cellspacing="0"', |
75 | 75 | 'sTableStatusHead' => 'style="margin:0;"', |
76 | 76 | 'sTableStatusText' => 'style="font-size:16px;"', |
77 | - 'sTableBackup' => 'style="width:100%; font-family: Arial, Helvetica, sans-serif; ' . |
|
78 | - 'background-color:#e6e6e6; ' . |
|
79 | - 'margin:0 0 15px; ' . |
|
80 | - 'border:1px solid #011516;" ' . |
|
77 | + 'sTableBackup' => 'style="width:100%; font-family: Arial, Helvetica, sans-serif; '. |
|
78 | + 'background-color:#e6e6e6; '. |
|
79 | + 'margin:0 0 15px; '. |
|
80 | + 'border:1px solid #011516;" '. |
|
81 | 81 | 'align="center" cellpadding="5" cellspacing="0" width="100%"', |
82 | - 'sTableBackupStatusColumn' => 'style="background-color:#%s; ' . |
|
82 | + 'sTableBackupStatusColumn' => 'style="background-color:#%s; '. |
|
83 | 83 | 'border-bottom:1px solid #747474;"', |
84 | 84 | 'sTableBackupStatusText' => 'style="float:right;"', |
85 | 85 | 'sRowHead' => 'style="border-top: 1px solid #f6f6f6; border-bottom: 1px solid #c9c9c9;"', |
@@ -9,17 +9,17 @@ |
||
9 | 9 | } else { |
10 | 10 | $branch = @exec('git rev-parse --abbrev-ref HEAD'); |
11 | 11 | $hash = @exec('git log -1 --format="%H"'); |
12 | - echo $branch . '@' . $hash; |
|
12 | + echo $branch.'@'.$hash; |
|
13 | 13 | } |
14 | 14 | echo PHP_EOL; |
15 | 15 | |
16 | -$lock = json_decode(file_get_contents(__DIR__ . '/../composer.lock')); |
|
16 | +$lock = json_decode(file_get_contents(__DIR__.'/../composer.lock')); |
|
17 | 17 | $packages = array_merge($lock->packages, $lock->{"packages-dev"}); |
18 | 18 | |
19 | 19 | foreach ($packages as $package) { |
20 | - echo $package->name . ': ' . $package->version; |
|
20 | + echo $package->name.': '.$package->version; |
|
21 | 21 | if (!preg_match('/^[v= ]*(([0-9]+)(\\.([0-9]+)(\\.([0-9]+)(-([0-9]+))?(-?([a-zA-Z-+][a-zA-Z0-9\\.\\-:]*)?)?)?)?)$/', $package->version)) { |
22 | - echo '@' . $package->source->reference; |
|
22 | + echo '@'.$package->source->reference; |
|
23 | 23 | } |
24 | 24 | echo PHP_EOL; |
25 | 25 | } |
@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | $replacements = array(); |
7 | 7 | |
8 | 8 | foreach ($patches as $file) { |
9 | - echo 'patching file: ' . $file['path'] . "..."; |
|
9 | + echo 'patching file: '.$file['path']."..."; |
|
10 | 10 | file_put_contents( |
11 | 11 | $file['path'], |
12 | 12 | str_replace( |
@@ -15,11 +15,11 @@ discard block |
||
15 | 15 | file_get_contents($file['path']) |
16 | 16 | ) |
17 | 17 | ); |
18 | - echo ' done' . PHP_EOL; |
|
18 | + echo ' done'.PHP_EOL; |
|
19 | 19 | }; |
20 | 20 | |
21 | 21 | foreach ($replacements as $file) { |
22 | - echo 'replacing file: ' . $file['path'] . "..."; |
|
22 | + echo 'replacing file: '.$file['path']."..."; |
|
23 | 23 | file_put_contents($file['path'], $file['content']); |
24 | - echo ' done' . PHP_EOL; |
|
24 | + echo ' done'.PHP_EOL; |
|
25 | 25 | } |
@@ -11,11 +11,11 @@ |
||
11 | 11 | } |
12 | 12 | |
13 | 13 | file_put_contents( |
14 | - __DIR__ . '/phar/Version.php', |
|
14 | + __DIR__.'/phar/Version.php', |
|
15 | 15 | str_replace( |
16 | 16 | 'private static $pharVersion;', |
17 | - 'private static $pharVersion = "' . $version . '";', |
|
18 | - file_get_contents(__DIR__ . '/phar/Version.php') |
|
17 | + 'private static $pharVersion = "'.$version.'";', |
|
18 | + file_get_contents(__DIR__.'/phar/Version.php') |
|
19 | 19 | ) |
20 | 20 | ); |
21 | 21 |
@@ -62,8 +62,8 @@ discard block |
||
62 | 62 | { |
63 | 63 | $s3->registerStreamWrapper(); |
64 | 64 | $source = $this->getFileHandle($target->getPathname(), 'r'); |
65 | - $stream = $this->getFileHandle('s3://' . $this->bucket . '/' . $this->getUploadPath($target), 'w'); |
|
66 | - while(!feof($source)) { |
|
65 | + $stream = $this->getFileHandle('s3://'.$this->bucket.'/'.$this->getUploadPath($target), 'w'); |
|
66 | + while (!feof($source)) { |
|
67 | 67 | fwrite($stream, fread($source, 4096)); |
68 | 68 | } |
69 | 69 | fclose($stream); |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | { |
98 | 98 | $handle = fopen($path, $mode); |
99 | 99 | if (!is_resource($handle)) { |
100 | - throw new Exception('fopen failed: could not open stream ' . $path); |
|
100 | + throw new Exception('fopen failed: could not open stream '.$path); |
|
101 | 101 | } |
102 | 102 | return $handle; |
103 | 103 | } |