Completed
Push — master ( d372d6...3eec25 )
by Christian
02:37
created
src/ElderBrother/Config/ConfigInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -18,6 +18,7 @@  discard block
 block discarded – undo
18 18
      * Throws an exception when action is not supported (eg: missing lib etc).
19 19
      *
20 20
      * @throws \Exception
21
+     * @return void
21 22
      */
22 23
     public function checkSupport();
23 24
 
@@ -26,6 +27,7 @@  discard block
 block discarded – undo
26 27
      *
27 28
      * @param InputInterface  $input
28 29
      * @param OutputInterface $output
30
+     * @return void
29 31
      */
30 32
     public function execute(InputInterface $input, OutputInterface $output);
31 33
 }
Please login to merge, or discard this patch.
test/unit/ElderBrother/Config/ConfigTest.php 1 patch
Braces   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -6,10 +6,10 @@
 block discarded – undo
6 6
 use uuf6429\ElderBrother\Action;
7 7
 use uuf6429\ElderBrother\Change;
8 8
 
9
-class ConfigTest extends \PHPUnit_Framework_TestCase
10
-{
11
-    public function testConfigMergingFromDifferentSources()
12
-    {
9
+class ConfigTest extends \PHPUnit_Framework_TestCase
10
+{
11
+    public function testConfigMergingFromDifferentSources()
12
+    {
13 13
         $testFile = tempnam(sys_get_temp_dir(), 'test');
14 14
         $content = sprintf(
15 15
             '<?php return ["event1" => [ new %s(%s::get()) ]];',
Please login to merge, or discard this patch.