Completed
Push — 123 ( d13f38 )
by Vasily
05:11
created
app-examples/Example.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 	 * Setting default config options
15 15
 	 * Overriden from AppInstance::getConfigDefaults
16 16
 	 * Uncomment and return array with your default options
17
-	 * @return array|false
17
+	 * @return boolean
18 18
 	 */
19 19
 	protected function getConfigDefaults() {
20 20
 		return false;
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 	 * Creates Request.
49 49
 	 * @param object Request.
50 50
 	 * @param object Upstream application instance.
51
-	 * @return object Request.
51
+	 * @return ExampleRequest Request.
52 52
 	 */
53 53
 	public function beginRequest($req, $upstream) {
54 54
 		return new ExampleRequest($this, $upstream, $req);
Please login to merge, or discard this patch.
app-examples/ExampleDNSClient.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 	 * Creates Request.
12 12
 	 * @param object Request.
13 13
 	 * @param object Upstream application instance.
14
-	 * @return object Request.
14
+	 * @return ExampleDNSClientRequest Request.
15 15
 	 */
16 16
 	public function beginRequest($req, $upstream) {
17 17
 		return new ExampleDNSClientRequest($this, $upstream, $req);
Please login to merge, or discard this patch.
app-examples/ExampleFs.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 	 * Creates Request.
12 12
 	 * @param object Request.
13 13
 	 * @param object Upstream application instance.
14
-	 * @return object Request.
14
+	 * @return ExampleFsRequest Request.
15 15
 	 */
16 16
 	public function beginRequest($req, $upstream) {
17 17
 		return new ExampleFsRequest($this, $upstream, $req);
Please login to merge, or discard this patch.
app-examples/ExampleHTTPClient.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
 	 * Creates Request.
39 39
 	 * @param object Request.
40 40
 	 * @param object Upstream application instance.
41
-	 * @return object Request.
41
+	 * @return ExampleHTTPClientRequest Request.
42 42
 	 */
43 43
 	public function beginRequest($req, $upstream) {
44 44
 		return new ExampleHTTPClientRequest($this, $upstream, $req);
Please login to merge, or discard this patch.
app-examples/ExampleICMP.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 	 * Creates Request.
12 12
 	 * @param object Request.
13 13
 	 * @param object Upstream application instance.
14
-	 * @return object Request.
14
+	 * @return ExampleICMPRequest Request.
15 15
 	 */
16 16
 	public function beginRequest($req, $upstream) {
17 17
 		return new ExampleICMPRequest($this, $upstream, $req);
Please login to merge, or discard this patch.
app-examples/ExamplePubSub.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
 	 * Creates Request.
45 45
 	 * @param object Request.
46 46
 	 * @param object Upstream application instance.
47
-	 * @return object Request.
47
+	 * @return ExamplePubSubTestPageRequest Request.
48 48
 	 */
49 49
 	public function beginRequest($req, $upstream) {
50 50
 		return new ExamplePubSubTestPageRequest($this, $upstream, $req);
Please login to merge, or discard this patch.
app-examples/ExampleSandbox.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
 	 * Creates Request.
39 39
 	 * @param object Request.
40 40
 	 * @param object Upstream application instance.
41
-	 * @return object Request.
41
+	 * @return ExampleSandboxRequest Request.
42 42
 	 */
43 43
 	public function beginRequest($req, $upstream) {
44 44
 		return new ExampleSandboxRequest($this, $upstream, $req);
Please login to merge, or discard this patch.
app-examples/ExampleWebSocket.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 	 * Creates Request.
24 24
 	 * @param object Request.
25 25
 	 * @param object Upstream application instance.
26
-	 * @return object Request.
26
+	 * @return ExampleWebSocketTestPageRequest Request.
27 27
 	 */
28 28
 	public function beginRequest($req, $upstream) {
29 29
 		return new ExampleWebSocketTestPageRequest($this, $upstream, $req);
Please login to merge, or discard this patch.
app-examples/ExampleWithMemcache.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 	 * Creates Request.
12 12
 	 * @param object Request.
13 13
 	 * @param object Upstream application instance.
14
-	 * @return object Request.
14
+	 * @return ExampleWithMemcacheRequest Request.
15 15
 	 */
16 16
 	public function beginRequest($req, $upstream) {
17 17
 		return new ExampleWithMemcacheRequest($this, $upstream, $req);
Please login to merge, or discard this patch.