Completed
Push — master ( de4e53...860647 )
by Rafał
20:05
created
DependencyInjection/Configuration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,8 +46,8 @@
 block discarded – undo
46 46
                 ->end()
47 47
                 ->arrayNode('persistence')
48 48
                     ->validate()
49
-                    ->ifTrue(function ($v) {
50
-                        return count(array_filter($v, function ($persistence) {
49
+                    ->ifTrue(function($v) {
50
+                        return count(array_filter($v, function($persistence) {
51 51
                             return $persistence['enabled'];
52 52
                         })) > 1;
53 53
                     })
Please login to merge, or discard this patch.
Tests/Command/ListTetantsCommandTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -147,6 +147,9 @@
 block discarded – undo
147 147
         $this->assertEquals($result, trim($this->commandTester->getDisplay()));
148 148
     }
149 149
 
150
+    /**
151
+     * @param Organization $mockOrganization
152
+     */
150 153
     private function getMockContainer($mockOrganization = null)
151 154
     {
152 155
         $mockRepoOrganization = $this->getMockBuilder(OrganizationRepositoryInterface::class)
Please login to merge, or discard this patch.
Command/CreateTenantCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@
 block discarded – undo
130 130
         $default = $input->getOption('default');
131 131
         if (!$input->getArgument($name) && !$default && $name !== $this->arguments[1]) {
132 132
             $question = new Question(sprintf('<question>Please enter %s:</question>', $name));
133
-            $question->setValidator(function ($argument) use ($name) {
133
+            $question->setValidator(function($argument) use ($name) {
134 134
                 if (empty($argument)) {
135 135
                     throw new \RuntimeException(sprintf('The %s can not be empty', $name));
136 136
                 }
Please login to merge, or discard this patch.
Command/CreateOrganizationCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
     {
112 112
         if (!$input->getArgument($name)) {
113 113
             $question = new Question(sprintf('<question>Please enter %s:</question>', $name));
114
-            $question->setValidator(function ($argument) use ($name) {
114
+            $question->setValidator(function($argument) use ($name) {
115 115
                 if (empty($argument)) {
116 116
                     throw new \RuntimeException(sprintf('The %s can not be empty', $name));
117 117
                 }
Please login to merge, or discard this patch.
Form/Type/TenantChoiceType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
     public function configureOptions(OptionsResolver $resolver)
58 58
     {
59 59
         $resolver->setDefaults([
60
-            'choices' => function (Options $options) {
60
+            'choices' => function(Options $options) {
61 61
                 return $this->tenantRepository->findAll();
62 62
             },
63 63
             'choice_value' => 'code',
Please login to merge, or discard this patch.
Tests/Command/CreateOrganizationCommandTest.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -120,6 +120,11 @@
 block discarded – undo
120 120
         );
121 121
     }
122 122
 
123
+    /**
124
+     * @param Organization $mockOrganization
125
+     * @param Organization $mockedOrganizationInFactory
126
+     * @param string $name
127
+     */
123 128
     private function getMockContainer($mockOrganization = null, $mockedOrganizationInFactory = null, $name = OrganizationInterface::DEFAULT_NAME)
124 129
     {
125 130
         $mockRepo = $this->getMockBuilder(OrganizationRepositoryInterface::class)
Please login to merge, or discard this patch.
Tests/Command/CreateTenantCommandTest.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -139,6 +139,11 @@
 block discarded – undo
139 139
         );
140 140
     }
141 141
 
142
+    /**
143
+     * @param Tenant $mockTenant
144
+     * @param Organization $mockOrganization
145
+     * @param Tenant $mockedTenantInFactory
146
+     */
142 147
     private function getMockContainer($mockTenant = null, $mockOrganization = null, $mockedTenantInFactory = null, $subdomain = 'default', $domain = 'localhost')
143 148
     {
144 149
         $mockRepoOrganization = $this->getMockBuilder(OrganizationRepositoryInterface::class)
Please login to merge, or discard this patch.