@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | Loader::load('collector', 'image/PhotoCollector'); |
42 | 42 | $photo_result = PhotoCollector::getRow($id); |
43 | 43 | |
44 | - if($photo_result == null) |
|
44 | + if ($photo_result == null) |
|
45 | 45 | return; |
46 | 46 | |
47 | 47 | $name = $photo_result->name; |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | $tag_result = $repository->getTagsForPost($post['id']); |
93 | 93 | |
94 | 94 | $tag_array = array(); |
95 | - foreach($tag_result as $tag) |
|
95 | + foreach ($tag_result as $tag) |
|
96 | 96 | { |
97 | 97 | $tag_object = new stdclass(); |
98 | 98 | $tag_object->name = $tag['tag']; |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | { |
107 | 107 | $body = $post['body']; |
108 | 108 | |
109 | - if($trim) |
|
109 | + if ($trim) |
|
110 | 110 | $body = Content::instance('SmartTrim', $body)->activate(self::$LENGTH_OF_TRIMMED_POST); |
111 | 111 | |
112 | 112 | $body = Content::instance('FixPhoto', $body)->activate(false, 'standard'); |
@@ -132,9 +132,9 @@ discard block |
||
132 | 132 | $maximum_tag_count = $this->get_maximum_tag_count($tag_result); |
133 | 133 | |
134 | 134 | $cloud_array = array(); |
135 | - foreach($tag_result as $tag) |
|
135 | + foreach ($tag_result as $tag) |
|
136 | 136 | { |
137 | - if($tag['count'] < self::$MINIMUM_TAG_COUNT) |
|
137 | + if ($tag['count'] < self::$MINIMUM_TAG_COUNT) |
|
138 | 138 | continue; |
139 | 139 | |
140 | 140 | $tag_object = new stdclass(); |
@@ -151,9 +151,9 @@ discard block |
||
151 | 151 | { |
152 | 152 | $maximum = 1; |
153 | 153 | |
154 | - foreach($tag_result as $tag) |
|
154 | + foreach ($tag_result as $tag) |
|
155 | 155 | { |
156 | - if($tag['count'] > $maximum) |
|
156 | + if ($tag['count'] > $maximum) |
|
157 | 157 | $maximum = $tag['count']; |
158 | 158 | } |
159 | 159 | return $maximum; |
@@ -164,7 +164,7 @@ discard block |
||
164 | 164 | $comment_array = CommentCollector::getRecentBlogComments(self::$RECENT_COMMENT_COUNT); |
165 | 165 | |
166 | 166 | $array = array(); |
167 | - foreach($comment_array as $comment) |
|
167 | + foreach ($comment_array as $comment) |
|
168 | 168 | { |
169 | 169 | $body = $comment->body; |
170 | 170 | $body = strip_tags($body); |
@@ -29,14 +29,14 @@ discard block |
||
29 | 29 | |
30 | 30 | // timezones are fun |
31 | 31 | date_default_timezone_set('America/Phoenix'); // todo - belongs in configuration |
32 | -$container['default_timezone'] = function ($c) { |
|
32 | +$container['default_timezone'] = function($c) { |
|
33 | 33 | return new DateTimeZone('America/Phoenix'); |
34 | 34 | }; |
35 | 35 | |
36 | 36 | |
37 | 37 | // configure the db connections holder |
38 | 38 | $db_connections = new Aura\Sql\ConnectionLocator(); |
39 | -$db_connections->setDefault(function () use ($config) { |
|
39 | +$db_connections->setDefault(function() use ($config) { |
|
40 | 40 | $connection = $config->database->slave; |
41 | 41 | return new Aura\Sql\ExtendedPdo( |
42 | 42 | "mysql:host={$connection->host}", |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | $connection->password |
45 | 45 | ); |
46 | 46 | }); |
47 | -$db_connections->setWrite('master', function () use ($config) { |
|
47 | +$db_connections->setWrite('master', function() use ($config) { |
|
48 | 48 | $connection = $config->database->master; |
49 | 49 | return new Aura\Sql\ExtendedPdo( |
50 | 50 | "mysql:host={$connection->host}", |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | $connection->password |
53 | 53 | ); |
54 | 54 | }); |
55 | -$db_connections->setRead('slave', function () use ($config) { |
|
55 | +$db_connections->setRead('slave', function() use ($config) { |
|
56 | 56 | $connection = $config->database->slave; |
57 | 57 | $pdo = new Aura\Sql\ExtendedPdo( |
58 | 58 | "mysql:host={$connection->host}", |
@@ -70,13 +70,13 @@ discard block |
||
70 | 70 | |
71 | 71 | |
72 | 72 | // setup mail handler |
73 | -$container['mail'] = $container->factory(function ($c) { |
|
73 | +$container['mail'] = $container->factory(function($c) { |
|
74 | 74 | return (new Jacobemerick\Archangel\Archangel())->setLogger($c['logger']); |
75 | 75 | }); |
76 | 76 | |
77 | 77 | |
78 | 78 | // setup the logger |
79 | -$container['setup_logger'] = $container->protect(function ($name) use ($container) { |
|
79 | +$container['setup_logger'] = $container->protect(function($name) use ($container) { |
|
80 | 80 | $logger = new Monolog\Logger($name); |
81 | 81 | |
82 | 82 | $logPath = __DIR__ . "/../logs/{$name}.log"; |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | |
108 | 108 | |
109 | 109 | // sets up shutdown function to display profiler |
110 | -register_shutdown_function(function () use ($container) { |
|
110 | +register_shutdown_function(function() use ($container) { |
|
111 | 111 | if ( |
112 | 112 | !isset($_COOKIE['debugger']) || |
113 | 113 | $_COOKIE['debugger'] != 'display' |
@@ -119,10 +119,10 @@ discard block |
||
119 | 119 | ->getRead() |
120 | 120 | ->getProfiler() |
121 | 121 | ->getProfiles(); |
122 | - $dbProfiles = array_filter($dbProfiles, function ($profile) { |
|
122 | + $dbProfiles = array_filter($dbProfiles, function($profile) { |
|
123 | 123 | return $profile['function'] == 'perform'; |
124 | 124 | }); |
125 | - $dbProfiles = array_map(function ($profile) { |
|
125 | + $dbProfiles = array_map(function($profile) { |
|
126 | 126 | return [ |
127 | 127 | 'sql' => trim(preg_replace('/\s+/', ' ', $profile['statement'])), |
128 | 128 | 'parameters' => $profile['bind_values'], |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | ], |
27 | 27 | ]; |
28 | 28 | |
29 | - return array_map(function ($row) { |
|
29 | + return array_map(function($row) { |
|
30 | 30 | return (object) $row; |
31 | 31 | }, $paths); |
32 | 32 | } |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | ], |
49 | 49 | ]; |
50 | 50 | |
51 | - return array_map(function ($row) { |
|
51 | + return array_map(function($row) { |
|
52 | 52 | return (object) $row; |
53 | 53 | }, $paths); |
54 | 54 | } |
@@ -36,7 +36,7 @@ |
||
36 | 36 | $active_page = ucfirst(URLDecode::getPiece(1)); |
37 | 37 | } |
38 | 38 | |
39 | - return array_map(function ($row) use ($active_page) { |
|
39 | + return array_map(function($row) use ($active_page) { |
|
40 | 40 | $row = (object) $row; |
41 | 41 | $row->active = ($row->name == $active_page); |
42 | 42 | return $row; |