Completed
Push — master ( 71ad71...95ff40 )
by Adam
02:38
created
src/IPub/Flickr/ApiCall.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
 		OAuth\Consumer $consumer,
58 58
 		OAuth\HttpClient $httpClient,
59 59
 		Configuration $config
60
-	){
60
+	) {
61 61
 		$this->consumer = $consumer;
62 62
 		$this->httpClient = $httpClient;
63 63
 		$this->config = $config;
Please login to merge, or discard this patch.
src/IPub/Flickr/Paginator.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -153,7 +153,8 @@
 block discarded – undo
153 153
 			return;
154 154
 		}
155 155
 
156
-		if (isset($this->resources[$this->pageCursor + 1])) { // already loaded
156
+		if (isset($this->resources[$this->pageCursor + 1])) {
157
+// already loaded
157 158
 			$this->itemCursor = 0;
158 159
 			$this->pageCursor++;
159 160
 
Please login to merge, or discard this patch.
src/IPub/Flickr/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/Flickr/UI/LoginDialog.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,8 @@
 block discarded – undo
103 103
 	 */
104 104
 	public function handleOpen()
105 105
 	{
106
-		if (!$this->client->getUser()) { // no user
106
+		if (!$this->client->getUser()) {
107
+// no user
107 108
 			$this->open();
108 109
 		}
109 110
 
Please login to merge, or discard this patch.
src/IPub/Flickr/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\Flickr\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/Flickr/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\Flickr\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/Flickr/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\Flickr\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/Flickr/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\Flickr\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/Flickr/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\Flickr\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.