Completed
Push — master ( de31c0...2a2078 )
by Adam
03:08
created
src/IPub/Twitter/Paginator.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -151,7 +151,8 @@
 block discarded – undo
151 151
 			return;
152 152
 		}
153 153
 
154
-		if (isset($this->resources[$this->pageCursor + 1])) { // already loaded
154
+		if (isset($this->resources[$this->pageCursor + 1])) {
155
+// already loaded
155 156
 			$this->itemCursor = 0;
156 157
 			$this->pageCursor++;
157 158
 
Please login to merge, or discard this patch.
src/IPub/Twitter/Exceptions/InvalidArgumentException.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,4 +14,6 @@
 block discarded – undo
14 14
 
15 15
 namespace IPub\Twitter\Exceptions;
16 16
 
17
-class InvalidArgumentException extends \Exception implements IException {}
18 17
\ No newline at end of file
18
+class InvalidArgumentException extends \Exception implements IException
19
+{
20
+}
19 21
\ No newline at end of file
Please login to merge, or discard this patch.
src/IPub/Twitter/Exceptions/IException.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,4 +14,6 @@
 block discarded – undo
14 14
 
15 15
 namespace IPub\Twitter\Exceptions;
16 16
 
17
-interface IException {}
18 17
\ No newline at end of file
18
+interface IException
19
+{
20
+}
19 21
\ No newline at end of file
Please login to merge, or discard this patch.
src/IPub/Twitter/Exceptions/InvalidStateException.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,4 +14,6 @@
 block discarded – undo
14 14
 
15 15
 namespace IPub\Twitter\Exceptions;
16 16
 
17
-class InvalidStateException extends \Exception implements IException {}
18 17
\ No newline at end of file
18
+class InvalidStateException extends \Exception implements IException
19
+{
20
+}
19 21
\ No newline at end of file
Please login to merge, or discard this patch.
src/IPub/Twitter/Exceptions/FileNotFoundException.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,4 +14,6 @@
 block discarded – undo
14 14
 
15 15
 namespace IPub\Twitter\Exceptions;
16 16
 
17
-class FileNotFoundException extends IOException implements IException {}
18 17
\ No newline at end of file
18
+class FileNotFoundException extends IOException implements IException
19
+{
20
+}
19 21
\ No newline at end of file
Please login to merge, or discard this patch.
src/IPub/Twitter/Exceptions/IOException.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,4 +14,6 @@
 block discarded – undo
14 14
 
15 15
 namespace IPub\Twitter\Exceptions;
16 16
 
17
-class IOException extends \RuntimeException implements IException {}
18 17
\ No newline at end of file
18
+class IOException extends \RuntimeException implements IException
19
+{
20
+}
19 21
\ No newline at end of file
Please login to merge, or discard this patch.
src/IPub/Twitter/Client.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
 		Configuration $config,
73 73
 		SessionStorage $session,
74 74
 		Nette\Http\IRequest $httpRequest
75
-	){
75
+	) {
76 76
 		parent::__construct($consumer, $httpClient, $config);
77 77
 
78 78
 		$this->session = $session;
Please login to merge, or discard this patch.
src/IPub/Twitter/UI/LoginDialog.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,8 @@
 block discarded – undo
105 105
 	 */
106 106
 	public function handleOpen()
107 107
 	{
108
-		if (!$this->client->getUser()) { // no user
108
+		if (!$this->client->getUser()) {
109
+// no user
109 110
 			$this->open();
110 111
 		}
111 112
 
Please login to merge, or discard this patch.
src/IPub/Twitter/ApiCall.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
 		Configuration $config,
73 73
 		SessionStorage $session,
74 74
 		Nette\Http\IRequest $httpRequest
75
-	){
75
+	) {
76 76
 		parent::__construct($consumer, $httpClient, $config);
77 77
 
78 78
 		$this->session = $session;
Please login to merge, or discard this patch.