Skip to content

Commit d98b856

Browse files
authored
Merge pull request #219 from phpcr/analysis-neG0dw
Apply fixes from StyleCI
2 parents 7fbcfd2 + 0790e8e commit d98b856

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

spec/PHPCR/Shell/Config/ProfileLoaderSpec.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public function it_should_save_a_given_profile(
8888
password: leech
8989

9090
EOT
91-
, 0600)->shouldBeCalled();
91+
, 0600)->shouldBeCalled();
9292
$this->saveProfile($profile);
9393
}
9494
}

src/PHPCR/Shell/Config/Profile.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ protected function validateDomain($domain)
5353
/**
5454
* Set a domain configuration.
5555
*
56-
* @param string $domain
57-
* @param $key
56+
* @param string $domain
57+
* @param $key
5858
* @param array|null $value
5959
*/
6060
public function set($domain, $key, $value = null)

src/PHPCR/Shell/Console/Command/Phpcr/NodeListCommand.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -137,11 +137,11 @@ public function execute(InputInterface $input, OutputInterface $output)
137137
if ($config['show_execution_time_list']) {
138138
$output->writeln(
139139
sprintf(
140-
'%s nodes, %s properties in set (%s sec)',
141-
$this->nbNodes,
142-
$this->nbProperties,
143-
number_format($this->time, $config['execution_time_expansion'])
144-
)
140+
'%s nodes, %s properties in set (%s sec)',
141+
$this->nbNodes,
142+
$this->nbProperties,
143+
number_format($this->time, $config['execution_time_expansion'])
144+
)
145145
);
146146
}
147147

src/PHPCR/Shell/Console/Helper/ResultFormatterHelper.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,10 @@ public function formatQueryResult(QueryResultInterface $result, OutputInterface
9292
if (true === $this->config['show_execution_time_query']) {
9393
$output->writeln(
9494
sprintf(
95-
'%s rows in set (%s sec)',
96-
count($result->getRows()),
97-
number_format($elapsed, $this->config['execution_time_expansion'])
98-
)
95+
'%s rows in set (%s sec)',
96+
count($result->getRows()),
97+
number_format($elapsed, $this->config['execution_time_expansion'])
98+
)
9999
);
100100
}
101101
}

tests/PHPCR/Shell/Helper/EditorHelperTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function testFromValue()
4040
Two
4141
Three
4242
EOT
43-
,
43+
,
4444
$res
4545
);
4646
}

0 commit comments

Comments
 (0)