Completed
Branch master (bb48cc)
by vijay
148:50 queued 92:39
created
app/Exceptions/Handler.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -58,6 +58,9 @@
 block discarded – undo
58 58
         }
59 59
     }
60 60
 
61
+    /**
62
+     * @param Exception $e
63
+     */
61 64
     protected function renderException($e) {
62 65
 
63 66
         switch ($e) {
Please login to merge, or discard this patch.
app/Http/Controllers/Front/CheckoutController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -151,6 +151,9 @@
 block discarded – undo
151 151
         }
152 152
     }
153 153
 
154
+    /**
155
+     * @param Invoice $invoice
156
+     */
154 157
     public function checkoutAction($invoice) {
155 158
         try {
156 159
             //dd($invoice);
Please login to merge, or discard this patch.
app/Http/Controllers/Github/GithubController.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -86,7 +86,6 @@  discard block
 block discarded – undo
86 86
 
87 87
     /**
88 88
      * List only one release by tag
89
-     * @param Request $request
90 89
      * @return type
91 90
      */
92 91
     public function getReleaseByTag($owner,$repo) {
@@ -149,7 +148,7 @@  discard block
 block discarded – undo
149 148
     /**
150 149
      * 
151 150
      * @param type $release
152
-     * @return type .zip file
151
+     * @return null|\Illuminate\Http\RedirectResponse .zip file
153 152
      */
154 153
     public function download($release) {
155 154
         try {
Please login to merge, or discard this patch.
vendor/davejamesmiller/laravel-breadcrumbs/tests/unit/ManagerTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -18,6 +18,10 @@
 block discarded – undo
18 18
 	}
19 19
 
20 20
 	// Breadcrumbs::register($name, $callback) is tested by other methods
21
+
22
+	/**
23
+	 * @param string $name
24
+	 */
21 25
 	protected function register($name)
22 26
 	{
23 27
 		$this->manager->register($name, $fn = function() {
Please login to merge, or discard this patch.