Completed
Push — master ( 9a0c7b...4ce38a )
by Morgan
02:44
created
src/Controllers/DeployController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -75,8 +75,8 @@  discard block
 block discarded – undo
75 75
     /**
76 76
      * Create a new DeployController instance.
77 77
      *
78
-     * @param Morphatic\AutoDeploy\Origins\OriginInterface $origin The origin of the webhook
79
-     * @param AdamBrett\ShellWrapper\Runners\Exec          $exec   The shell command execution class
78
+     * @param OriginInterface $origin The origin of the webhook
79
+     * @param Exec          $exec   The shell command execution class
80 80
      */
81 81
     public function __construct(OriginInterface $origin, Exec $exec)
82 82
     {
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
     /**
132 132
      * Runs a shell command, logs, and handles the result.
133 133
      *
134
-     * @param AdamBrett\ShellWrapper\CommandInterface $cmd The text of the command to be run
134
+     * @param CommandInterface $cmd The text of the command to be run
135 135
      *
136 136
      * @return bool True if the command was successful, false on error
137 137
      */
Please login to merge, or discard this patch.
src/Origins/Github.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      *
32 32
      * Follows the procedure described here: https://developer.github.com/webhooks/securing/
33 33
      *
34
-     * @return bool Returns true if the request is authentic. False otherwise.
34
+     * @return null|boolean Returns true if the request is authentic. False otherwise.
35 35
      */
36 36
     public function isAuthentic()
37 37
     {
Please login to merge, or discard this patch.