Completed
Push — master ( 9f3049...8e4a64 )
by Paweł
03:06
created
components/AccountManager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
         $this->saveUsernames($usernames);
64 64
 
65 65
         $createdAt = (new \DateTime())->format('Y-m-d H:i:s');
66
-        $rows = array_map(function ($id) use ($media, $createdAt) {
66
+        $rows = array_map(function($id) use ($media, $createdAt) {
67 67
             return [
68 68
                 $media->id,
69 69
                 $id,
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
     public function saveUsernames(array $usernames)
88 88
     {
89 89
         $createdAt = (new \DateTime())->format('Y-m-d H:i:s');
90
-        $rows = array_map(function ($username) use ($createdAt) {
90
+        $rows = array_map(function($username) use ($createdAt) {
91 91
             return [
92 92
                 $username,
93 93
                 $createdAt,
Please login to merge, or discard this patch.