Completed
Push — master ( 9a746f...9c8777 )
by Chris
02:04
created
src/Psecio/Invoke/Data.php 2 patches
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,6 +28,9 @@  discard block
 block discarded – undo
28 28
 	 */
29 29
 	private $enforcer;
30 30
 
31
+	/**
32
+	 * @param Resource $resource
33
+	 */
31 34
 	public function __construct(UserInterface $user, $resource, $route = null)
32 35
 	{
33 36
 		$this->user = $user;
@@ -50,7 +53,7 @@  discard block
 block discarded – undo
50 53
 	/**
51 54
 	 * Get the current user instance
52 55
 	 *
53
-	 * @return \Psecio\Invoke\InvokeUser instance
56
+	 * @return UserInterface instance
54 57
 	 */
55 58
 	public function getUser()
56 59
 	{
@@ -80,7 +83,7 @@  discard block
 block discarded – undo
80 83
 	/**
81 84
 	 * Set the current route instance
82 85
 	 *
83
-	 * @param \Psecio\Invoke\RouteContaine $route Instance
86
+	 * @param RouteContainer $route Instance
84 87
 	 */
85 88
 	public function setRoute(RouteContainer $route)
86 89
 	{
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
 	 *
93 93
 	 * @param \Psecio\Invoke\Enforcer $enforcer Enforcer object
94 94
 	 */
95
-	public function setEnforcer(\Psecio\Invoke\Enforcer &$enforcer)
95
+	public function setEnforcer(\Psecio\Invoke\Enforcer & $enforcer)
96 96
 	{
97 97
 		$this->enforcer = $enforcer;
98 98
 	}
Please login to merge, or discard this patch.
src/Psecio/Invoke/RouteContainer.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -39,6 +39,7 @@
 block discarded – undo
39 39
     /**
40 40
      * Get the current configuration
41 41
      *
42
+     * @param string $name
42 43
      * @return array Configuration set
43 44
      */
44 45
     public function getConfig($name = null)
Please login to merge, or discard this patch.
src/Psecio/Invoke/Match.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 	{
34 34
 		$typeNs = "\\Psecio\\Invoke\\Match";
35 35
 		foreach (explode('.', $type) as $part) {
36
-			$typeNs	.= "\\".ucwords($part);
36
+			$typeNs .= "\\".ucwords($part);
37 37
 		}
38 38
 		return $typeNs;
39 39
 	}
Please login to merge, or discard this patch.