Completed
Push — master ( 4988a4...54f6f8 )
by Jacob
04:02
created
src/Domain/Comment/Commenter/ServiceCommenterRepository.php 1 patch
Braces   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -6,8 +6,8 @@  discard block
 block discarded – undo
6 6
 use Jacobemerick\CommentService\Api\DefaultApi;
7 7
 use Jacobemerick\CommentService\Model\Commenter;
8 8
 
9
-class ServiceCommenterRepository implements CommenterRepositoryInterface
10
-{
9
+class ServiceCommenterRepository implements CommenterRepositoryInterface
10
+{
11 11
 
12 12
     /**
13 13
      * @var DefaultApi
@@ -17,8 +17,8 @@  discard block
 block discarded – undo
17 17
     /**
18 18
      * @param DefaultApi $api
19 19
      */
20
-    public function __construct(DefaultApi $api)
21
-    {
20
+    public function __construct(DefaultApi $api)
21
+    {
22 22
         $this->api = $api;
23 23
     }
24 24
 
@@ -27,8 +27,8 @@  discard block
 block discarded – undo
27 27
      * @return array
28 28
      * @throws ApiException
29 29
      */
30
-    public function createCommenter(array $commenter)
31
-    {
30
+    public function createCommenter(array $commenter)
31
+    {
32 32
         $response = $this->api->createCommenter($commenter);
33 33
         return $this->deserializeCommenter($response);
34 34
     }
@@ -38,8 +38,8 @@  discard block
 block discarded – undo
38 38
      * @return array
39 39
      * @throws ApiException
40 40
      */
41
-    public function getCommenter($commenterId)
42
-    {
41
+    public function getCommenter($commenterId)
42
+    {
43 43
         $response = $this->api->getCommenter($commenterId);
44 44
         return $this->deserializeCommenter($response);
45 45
     }
@@ -50,8 +50,8 @@  discard block
 block discarded – undo
50 50
      * @return array
51 51
      * @throws ApiException
52 52
      */
53
-    public function getCommenters($page = null, $perPage = null)
54
-    {
53
+    public function getCommenters($page = null, $perPage = null)
54
+    {
55 55
         $response = $this->api->getCommenters($page, $perPage);
56 56
         return array_map([$this, 'deserializeCommenter'], $response);
57 57
     }
@@ -60,8 +60,8 @@  discard block
 block discarded – undo
60 60
      * @param Commenter
61 61
      * @return array
62 62
      */
63
-    protected function deserializeCommenter(Commenter $commenter)
64
-    {
63
+    protected function deserializeCommenter(Commenter $commenter)
64
+    {
65 65
         return [
66 66
             'id' => $commenter->getId(),
67 67
             'name' => $commenter->getName(),
Please login to merge, or discard this patch.
src/Domain/Stream/Changelog/MysqlChangelogRepository.php 1 patch
Braces   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -4,8 +4,8 @@  discard block
 block discarded – undo
4 4
 
5 5
 use Aura\Sql\ConnectionLocator;
6 6
 
7
-class MysqlChangelogRepository implements ChangelogRepositoryInterface
8
-{
7
+class MysqlChangelogRepository implements ChangelogRepositoryInterface
8
+{
9 9
 
10 10
     /** @var  ConnectionLocator */
11 11
     protected $connections;
@@ -13,8 +13,8 @@  discard block
 block discarded – undo
13 13
     /**
14 14
      * @param ConnectonLocator $connections
15 15
      */
16
-    public function __construct(ConnectionLocator $connections)
17
-    {
16
+    public function __construct(ConnectionLocator $connections)
17
+    {
18 18
         $this->connections = $connections;
19 19
     }
20 20
 
@@ -24,8 +24,8 @@  discard block
 block discarded – undo
24 24
      *
25 25
      * @return array|false
26 26
      */
27
-    public function getChanges($limit = null, $offset = 0)
28
-    {
27
+    public function getChanges($limit = null, $offset = 0)
28
+    {
29 29
         $query = "
30 30
             SELECT `id`, `message`, `message_short`, `datetime`, `commit_link`
31 31
             FROM `jpemeric_stream`.`changelog`
Please login to merge, or discard this patch.
src/Domain/Stream/Activity/MysqlActivityRepository.php 1 patch
Braces   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -4,8 +4,8 @@  discard block
 block discarded – undo
4 4
 
5 5
 use Aura\Sql\ConnectionLocator;
6 6
 
7
-class MysqlActivityRepository implements ActivityRepositoryInterface
8
-{
7
+class MysqlActivityRepository implements ActivityRepositoryInterface
8
+{
9 9
 
10 10
     /** @var  ConnectionLocator */
11 11
     protected $connections;
@@ -13,8 +13,8 @@  discard block
 block discarded – undo
13 13
     /**
14 14
      * @param ConnectonLocator $connections
15 15
      */
16
-    public function __construct(ConnectionLocator $connections)
17
-    {
16
+    public function __construct(ConnectionLocator $connections)
17
+    {
18 18
         $this->connections = $connections;
19 19
     }
20 20
 
@@ -23,8 +23,8 @@  discard block
 block discarded – undo
23 23
      *
24 24
      * @return array|false
25 25
      */
26
-    public function getActivityById($id)
27
-    {
26
+    public function getActivityById($id)
27
+    {
28 28
         $query = "
29 29
             SELECT *
30 30
             FROM `jpemeric_stream`.`activity`
@@ -46,8 +46,8 @@  discard block
 block discarded – undo
46 46
      *
47 47
      * @return array|false
48 48
      */
49
-    public function getActivities($limit = null, $offset = 0)
50
-    {
49
+    public function getActivities($limit = null, $offset = 0)
50
+    {
51 51
         $query = "
52 52
             SELECT *
53 53
             FROM `jpemeric_stream`.`activity`
@@ -63,8 +63,8 @@  discard block
 block discarded – undo
63 63
             ->fetchAll($query);
64 64
     }
65 65
 
66
-    public function getActivitiesCount()
67
-    {
66
+    public function getActivitiesCount()
67
+    {
68 68
         $query = "
69 69
             SELECT COUNT(1) AS `count`
70 70
             FROM `jpemeric_stream`.`activity`";
@@ -75,8 +75,8 @@  discard block
 block discarded – undo
75 75
             ->fetchValue($query);
76 76
     }
77 77
 
78
-    public function getActivitiesByType($type, $limit = null, $offset = 0)
79
-    {
78
+    public function getActivitiesByType($type, $limit = null, $offset = 0)
79
+    {
80 80
         $query = "
81 81
             SELECT *
82 82
             FROM `jpemeric_stream`.`activity`
@@ -96,8 +96,8 @@  discard block
 block discarded – undo
96 96
             ->fetchAll($query, $bindings);
97 97
     }
98 98
 
99
-    public function getActivitiesByTypeCount($type)
100
-    {
99
+    public function getActivitiesByTypeCount($type)
100
+    {
101 101
         $query = "
102 102
             SELECT COUNT(1) AS `count`
103 103
             FROM `jpemeric_stream`.`activity`
Please login to merge, or discard this patch.
bootstrap.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -5,13 +5,13 @@  discard block
 block discarded – undo
5 5
 ini_set('display_errors', 0);
6 6
 
7 7
 
8
-require_once __DIR__ . '/vendor/autoload.php';
8
+require_once __DIR__.'/vendor/autoload.php';
9 9
 
10 10
 $container = new Pimple\Container();
11 11
 
12 12
 
13 13
 // load the config for the application
14
-$config_path = __DIR__ . '/config.json';
14
+$config_path = __DIR__.'/config.json';
15 15
 
16 16
 $handle = @fopen($config_path, 'r');
17 17
 if ($handle === false) {
@@ -29,14 +29,14 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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,7 +70,7 @@  discard block
 block discarded – undo
70 70
 
71 71
 
72 72
 // configure the comment service connection
73
-$container['comment_service_api'] = function () use ($config) {
73
+$container['comment_service_api'] = function() use ($config) {
74 74
     $configuration = (new Jacobemerick\CommentService\Configuration())
75 75
         ->setUsername($config->comments->user)
76 76
         ->setPassword($config->comments->password)
@@ -84,16 +84,16 @@  discard block
 block discarded – undo
84 84
 
85 85
 
86 86
 // setup mail handler
87
-$container['mail'] = $container->factory(function ($c) {
87
+$container['mail'] = $container->factory(function($c) {
88 88
     return (new Jacobemerick\Archangel\Archangel())->setLogger($c['logger']);
89 89
 });
90 90
 
91 91
 
92 92
 // setup the logger
93
-$container['setup_logger'] = $container->protect(function ($name) use ($container) {
93
+$container['setup_logger'] = $container->protect(function($name) use ($container) {
94 94
     $logger = new Monolog\Logger($name);
95 95
 
96
-    $logPath = __DIR__ . "/logs/{$name}.log";
96
+    $logPath = __DIR__."/logs/{$name}.log";
97 97
     $streamHandler = new Monolog\Handler\StreamHandler($logPath, Monolog\Logger::INFO);
98 98
     $streamHandler->setFormatter(
99 99
         new Monolog\Formatter\LineFormatter("[%datetime%] %channel%.%level_name%: %message%\n")
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
 
122 122
 
123 123
 // sets up shutdown function to display profiler
124
-register_shutdown_function(function () use ($container) {
124
+register_shutdown_function(function() use ($container) {
125 125
     if (
126 126
         !isset($_COOKIE['debugger']) ||
127 127
         $_COOKIE['debugger'] != 'display'
@@ -133,10 +133,10 @@  discard block
 block discarded – undo
133 133
         ->getRead()
134 134
         ->getProfiler()
135 135
         ->getProfiles();
136
-    $dbProfiles = array_filter($dbProfiles, function ($profile) {
136
+    $dbProfiles = array_filter($dbProfiles, function($profile) {
137 137
         return $profile['function'] == 'perform';
138 138
     });
139
-    $dbProfiles = array_map(function ($profile) {
139
+    $dbProfiles = array_map(function($profile) {
140 140
         return [
141 141
             'sql' => trim(preg_replace('/\s+/', ' ', $profile['statement'])),
142 142
             'parameters' => $profile['bind_values'],
Please login to merge, or discard this patch.