Completed
Push — master ( be278a...c04281 )
by Joel
06:48
created
src/Joli/JoliCi/Executor.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -57,6 +57,9 @@
 block discarded – undo
57 57
      */
58 58
     private $buildPath;
59 59
 
60
+    /**
61
+     * @param string $buildPath
62
+     */
60 63
     public function __construct(LoggerCallback $logger, Docker $docker, $buildPath, $usecache = true, $quietBuild = true, $timeout = 600)
61 64
     {
62 65
         $this->logger     = $logger;
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -10,14 +10,12 @@
 block discarded – undo
10 10
 
11 11
 namespace Joli\JoliCi;
12 12
 
13
-use Docker\API\Model\BuildInfo;
14 13
 use Docker\API\Model\ContainerConfig;
15 14
 use Docker\API\Model\HostConfig;
16 15
 use Docker\Docker;
17 16
 use Docker\Context\Context;
18 17
 use Docker\Manager\ContainerManager;
19 18
 use Docker\Manager\ImageManager;
20
-use Docker\Stream\BuildStream;
21 19
 use Http\Client\Plugin\Exception\ClientErrorException;
22 20
 use Monolog\Logger;
23 21
 
Please login to merge, or discard this patch.
src/Joli/JoliCi/LoggerCallback.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
     /**
43 43
      * Get the build log callback when building / pulling an image
44 44
      *
45
-     * @return callable
45
+     * @return \Closure
46 46
      */
47 47
     public function getBuildCallback()
48 48
     {
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
     /**
53 53
      * Get the run stdout callback for docker
54 54
      *
55
-     * @return callable
55
+     * @return \Closure
56 56
      */
57 57
     public function getRunStdoutCallback()
58 58
     {
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     /**
63 63
      * Get the run stderr callback for docker
64 64
      *
65
-     * @return callable
65
+     * @return \Closure
66 66
      */
67 67
     public function getRunStderrCallback()
68 68
     {
Please login to merge, or discard this patch.
src/Joli/JoliCi/ServiceManager.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -3,13 +3,9 @@
 block discarded – undo
3 3
 namespace Joli\JoliCi;
4 4
 
5 5
 use Docker\API\Model\ContainerConfig;
6
-use Docker\Container as DockerContainer;
7 6
 use Docker\Docker;
8
-use Docker\Exception\ImageNotFoundException;
9
-use Docker\Exception\UnexpectedStatusCodeException;
10 7
 use Docker\Manager\ImageManager;
11 8
 use Http\Client\Plugin\Exception\ClientErrorException;
12
-use Psr\Log\LoggerInterface;
13 9
 
14 10
 class ServiceManager
15 11
 {
Please login to merge, or discard this patch.