@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | $event->expects(self::never())->method("setBlocked"); |
77 | 77 | |
78 | 78 | $guard->registerGuardExpression("eventName", "workflow", "expression"); |
79 | - $guard->guardTransition($event ,"eventName"); |
|
79 | + $guard->guardTransition($event, "eventName"); |
|
80 | 80 | } |
81 | 81 | |
82 | 82 | /** |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | $logger->expects($this->exactly($loggerInvocationCount))->method("debug"); |
114 | 114 | |
115 | 115 | $guard->registerGuardExpression("eventName", "workflow", $expression); |
116 | - $guard->guardTransition($event ,"eventName"); |
|
116 | + $guard->guardTransition($event, "eventName"); |
|
117 | 117 | } |
118 | 118 | |
119 | 119 | public function expressionProvider() |
@@ -65,14 +65,14 @@ discard block |
||
65 | 65 | $this->setRootDir($rootDir); |
66 | 66 | |
67 | 67 | $this->configDir = realpath($configDir); |
68 | - if (!is_dir($this->configDir . '/' . $testCase)) { |
|
68 | + if (!is_dir($this->configDir.'/'.$testCase)) { |
|
69 | 69 | throw new \InvalidArgumentException(sprintf('The test case "%s" does not exist.', $testCase)); |
70 | 70 | } |
71 | 71 | $this->testCase = $testCase; |
72 | 72 | |
73 | 73 | $fs = new Filesystem(); |
74 | 74 | if (!$fs->isAbsolutePath($rootConfig) && |
75 | - !file_exists($rootConfig = $this->configDir . '/' . $testCase . '/' . $rootConfig)) { |
|
75 | + !file_exists($rootConfig = $this->configDir.'/'.$testCase.'/'.$rootConfig)) { |
|
76 | 76 | throw new \InvalidArgumentException(sprintf('The root config "%s" does not exist.', $rootConfig)); |
77 | 77 | } |
78 | 78 | $this->rootConfig = $rootConfig; |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | { |
128 | 128 | $bundles = array(); |
129 | 129 | $baseBundles = $this->getBaseBundles(); |
130 | - if (file_exists($filename = $this->configDir . '/' . $this->testCase . '/bundles.php')) { |
|
130 | + if (file_exists($filename = $this->configDir.'/'.$this->testCase.'/bundles.php')) { |
|
131 | 131 | $bundles = include $filename; |
132 | 132 | } |
133 | 133 | return array_merge($baseBundles, $bundles); |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | |
51 | 51 | // load fixtures |
52 | 52 | $fixturesBundle = new ClientBundle(); |
53 | - $fixturesPath = $fixturesBundle->getPath() . '/DataFixtures/ORM'; |
|
53 | + $fixturesPath = $fixturesBundle->getPath().'/DataFixtures/ORM'; |
|
54 | 54 | $this->loadFixtures($this->client->getContainer(), $fixturesPath); |
55 | 55 | } |
56 | 56 | |
@@ -67,8 +67,8 @@ discard block |
||
67 | 67 | "app_name" => "ScheduleCaseTest", |
68 | 68 | "test_case" => "ScheduleCase", |
69 | 69 | "root_config" => "config.yml", |
70 | - "config_dir" => __DIR__ . "/Configuration", |
|
71 | - "root_dir" => __DIR__ . "/Configuration/ScheduleCase", |
|
70 | + "config_dir" => __DIR__."/Configuration", |
|
71 | + "root_dir" => __DIR__."/Configuration/ScheduleCase", |
|
72 | 72 | "environment" => "test", |
73 | 73 | "debug" => false |
74 | 74 | ) |
@@ -36,7 +36,7 @@ |
||
36 | 36 | "app_name" => "EventTriggerWithGuardsCaseTest", |
37 | 37 | "test_case" => "EventTriggerWithGuardsCase", |
38 | 38 | "root_config" => "config.yml", |
39 | - "config_dir" => __DIR__ . "/Configuration", |
|
39 | + "config_dir" => __DIR__."/Configuration", |
|
40 | 40 | "environment" => "test", |
41 | 41 | "debug" => false |
42 | 42 | ) |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | ->defaultValue([]) |
78 | 78 | ->beforeNormalization() |
79 | 79 | ->ifString() |
80 | - ->then(function ($v) { return array($v); }) |
|
80 | + ->then(function($v) { return array($v); }) |
|
81 | 81 | ->end() |
82 | 82 | ->useAttributeAsKey('name') |
83 | 83 | ->prototype('scalar') |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | 'See https://en.wikipedia.org/wiki/ISO_8601#Durations for format description') |
99 | 99 | ->validate() |
100 | 100 | ->always() |
101 | - ->then(function ($v) { |
|
101 | + ->then(function($v) { |
|
102 | 102 | try { |
103 | 103 | new DateInterval($v); |
104 | 104 | |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | ->prototype('array') |
157 | 157 | ->beforeNormalization() |
158 | 158 | ->ifString() |
159 | - ->then(function ($v) { return ['expression' => $v]; }) |
|
159 | + ->then(function($v) { return ['expression' => $v]; }) |
|
160 | 160 | ->end() |
161 | 161 | ->children() |
162 | 162 | ->scalarNode('expression') |
@@ -187,7 +187,7 @@ discard block |
||
187 | 187 | ->beforeNormalization() |
188 | 188 | ->always() |
189 | 189 | ->then( |
190 | - function ($v) { |
|
190 | + function($v) { |
|
191 | 191 | if (isset($v) && is_array($v)) { |
192 | 192 | foreach ($v as $key => $value) { |
193 | 193 | unset($v[$key]); |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | /** |
26 | 26 | * Workflow registry definition id |
27 | 27 | */ |
28 | - const WORKFLOW_REGISTRY_ID= 'workflow.registry'; |
|
28 | + const WORKFLOW_REGISTRY_ID = 'workflow.registry'; |
|
29 | 29 | |
30 | 30 | /** |
31 | 31 | * Workflow id prefix used in main workflow bundle |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | $workflowReference = $callArgs[0]; |
72 | 72 | $workflowSupportedClass = $callArgs[1]; |
73 | 73 | |
74 | - $workflowIdWithPrefix = (string) $workflowReference; |
|
74 | + $workflowIdWithPrefix = (string) $workflowReference; |
|
75 | 75 | if (substr($workflowIdWithPrefix, 0, strlen(self::WORKFLOW_ID_PREFIX)) != self::WORKFLOW_ID_PREFIX) { |
76 | 76 | throw new RuntimeException( |
77 | 77 | sprintf( |
@@ -32,7 +32,7 @@ |
||
32 | 32 | { |
33 | 33 | $configuration = $this->getConfiguration($config, $container); |
34 | 34 | $config = $this->processConfiguration($configuration, $config); |
35 | - $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
35 | + $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
36 | 36 | $loader->load('applier.xml'); |
37 | 37 | |
38 | 38 | $this->registerSubjectManipulatorConfiguration($loader, $container, $config['subject_manipulator']); |
@@ -84,10 +84,10 @@ |
||
84 | 84 | |
85 | 85 | $transitionTriggerJobToSchedule = new Job('workflow:transition:trigger', |
86 | 86 | [ |
87 | - '--transition=' . $transitionName, |
|
88 | - '--workflow=' . $workflowName, |
|
89 | - '--subjectClass=' . $subjectClass, |
|
90 | - '--subjectId=' . $subjectId, |
|
87 | + '--transition='.$transitionName, |
|
88 | + '--workflow='.$workflowName, |
|
89 | + '--subjectClass='.$subjectClass, |
|
90 | + '--subjectId='.$subjectId, |
|
91 | 91 | ] |
92 | 92 | ); |
93 | 93 |
@@ -66,10 +66,10 @@ discard block |
||
66 | 66 | $transition = new ScheduledTransition('t1', 'PT1S'); |
67 | 67 | |
68 | 68 | $transitionTriggerJobArgs = [ |
69 | - '--transition=' . $transition->getTransitionName(), |
|
70 | - '--workflow=' . $workflowName, |
|
71 | - '--subjectClass=' . $subjectClass, |
|
72 | - '--subjectId=' . $subjectId, |
|
69 | + '--transition='.$transition->getTransitionName(), |
|
70 | + '--workflow='.$workflowName, |
|
71 | + '--subjectClass='.$subjectClass, |
|
72 | + '--subjectId='.$subjectId, |
|
73 | 73 | ]; |
74 | 74 | |
75 | 75 | Carbon::setTestNow(Carbon::now()); |
@@ -79,14 +79,14 @@ discard block |
||
79 | 79 | /** @var $em \PHPUnit_Framework_MockObject_MockObject|ObjectManager */ |
80 | 80 | $em->expects(self::exactly(2))->method('persist')->withConsecutive( |
81 | 81 | [self::callback( |
82 | - function (Job $job) use ($transitionTriggerJobArgs, $executeJobAfter) { |
|
82 | + function(Job $job) use ($transitionTriggerJobArgs, $executeJobAfter) { |
|
83 | 83 | return |
84 | 84 | $job->getArgs() == $transitionTriggerJobArgs && |
85 | 85 | $job->getExecuteAfter() == $executeJobAfter; |
86 | 86 | } |
87 | 87 | )], |
88 | 88 | [self::callback( |
89 | - function (ScheduledJob $job) { |
|
89 | + function(ScheduledJob $job) { |
|
90 | 90 | return |
91 | 91 | $job->getReschedulable() == true && $job->getJob() instanceof Job; |
92 | 92 | } |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | /** @var $em \PHPUnit_Framework_MockObject_MockObject|ObjectManager */ |
121 | 121 | $em->expects(self::once())->method('persist')->withConsecutive( |
122 | 122 | [self::callback( |
123 | - function (Job $job) use ($newExecuteJobAfter) { |
|
123 | + function(Job $job) use ($newExecuteJobAfter) { |
|
124 | 124 | return $job->getExecuteAfter() == $newExecuteJobAfter; |
125 | 125 | } |
126 | 126 | )] |