Completed
Push — master ( e259b1...e2a3b3 )
by wen
04:16
created
src/Component/Component.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -32,6 +32,9 @@
 block discarded – undo
32 32
         $this->bootIfNotBooted();
33 33
     }
34 34
 
35
+    /**
36
+     * @return string|null
37
+     */
35 38
     public function getTitle()
36 39
     {
37 40
         return $this->title;
Please login to merge, or discard this patch.
src/Component/Concerns/HasPermission.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -87,6 +87,9 @@
 block discarded – undo
87 87
         $this->permissions[$permission] = $callback;
88 88
     }
89 89
 
90
+    /**
91
+     * @param string $permission
92
+     */
90 93
     public function can($permission)
91 94
     {
92 95
         if (!isset($this->permissions[$permission])) {
Please login to merge, or discard this patch.