Completed
Push — master ( 408edc...841b8f )
by Sergey
02:35
created
src/Api/Endpoints/Users.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -6,10 +6,10 @@
 block discarded – undo
6 6
 
7 7
 class Users extends Endpoint
8 8
 {
9
-    use BelongsToOrganization;
9
+	use BelongsToOrganization;
10 10
 
11
-    /**
12
-     * @var string
13
-     */
14
-    protected $endpoint = 'users';
11
+	/**
12
+	 * @var string
13
+	 */
14
+	protected $endpoint = 'users';
15 15
 }
16 16
\ No newline at end of file
Please login to merge, or discard this patch.
src/Api/Endpoints/Columns.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -9,10 +9,10 @@
 block discarded – undo
9 9
 class Columns extends Endpoint
10 10
 {
11 11
 
12
-    use BelongsToOrganization, BelongsToWidget, CrudEndpoint;
12
+	use BelongsToOrganization, BelongsToWidget, CrudEndpoint;
13 13
 
14
-    /**
15
-     * @var string
16
-     */
17
-    protected $endpoint = 'columns';
14
+	/**
15
+	 * @var string
16
+	 */
17
+	protected $endpoint = 'columns';
18 18
 }
19 19
\ No newline at end of file
Please login to merge, or discard this patch.
src/Api/Endpoints/TaskLists.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -9,10 +9,10 @@
 block discarded – undo
9 9
 class TaskLists extends Endpoint
10 10
 {
11 11
 
12
-    use CrudEndpoint, BelongsToOrganization, BelongsToCard;
12
+	use CrudEndpoint, BelongsToOrganization, BelongsToCard;
13 13
 
14
-    /**
15
-     * @var string
16
-     */
17
-    protected $endpoint = 'tasklists';
14
+	/**
15
+	 * @var string
16
+	 */
17
+	protected $endpoint = 'tasklists';
18 18
 }
19 19
\ No newline at end of file
Please login to merge, or discard this patch.
src/Api/Endpoints/Cards.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -9,10 +9,10 @@
 block discarded – undo
9 9
 class Cards extends Endpoint
10 10
 {
11 11
 
12
-    use BelongsToOrganization, BelongsToWidget, CrudEndpoint;
12
+	use BelongsToOrganization, BelongsToWidget, CrudEndpoint;
13 13
 
14
-    /**
15
-     * @var string
16
-     */
17
-    protected $endpoint = 'cards';
14
+	/**
15
+	 * @var string
16
+	 */
17
+	protected $endpoint = 'cards';
18 18
 }
19 19
\ No newline at end of file
Please login to merge, or discard this patch.
src/Api/Endpoints/Tags.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -8,10 +8,10 @@
 block discarded – undo
8 8
 class Tags extends Endpoint
9 9
 {
10 10
 
11
-    use CrudEndpoint, BelongsToOrganization;
11
+	use CrudEndpoint, BelongsToOrganization;
12 12
 
13
-    /**
14
-     * @var string
15
-     */
16
-    protected $endpoint = 'tags';
13
+	/**
14
+	 * @var string
15
+	 */
16
+	protected $endpoint = 'tags';
17 17
 }
18 18
\ No newline at end of file
Please login to merge, or discard this patch.
src/Api/Endpoints/Comments.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -9,10 +9,10 @@
 block discarded – undo
9 9
 class Comments extends Endpoint
10 10
 {
11 11
 
12
-    use CrudEndpoint, BelongsToOrganization, BelongsToCard;
12
+	use CrudEndpoint, BelongsToOrganization, BelongsToCard;
13 13
 
14
-    /**
15
-     * @var string
16
-     */
17
-    protected $endpoint = 'comments';
14
+	/**
15
+	 * @var string
16
+	 */
17
+	protected $endpoint = 'comments';
18 18
 }
19 19
\ No newline at end of file
Please login to merge, or discard this patch.
src/Api/Endpoints/Tasks.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -9,10 +9,10 @@
 block discarded – undo
9 9
 class Tasks extends Endpoint
10 10
 {
11 11
 
12
-    use BelongsToOrganization, BelongsToCard, CrudEndpoint;
12
+	use BelongsToOrganization, BelongsToCard, CrudEndpoint;
13 13
 
14
-    /**
15
-     * @var string
16
-     */
17
-    protected $endpoint = 'tasks';
14
+	/**
15
+	 * @var string
16
+	 */
17
+	protected $endpoint = 'tasks';
18 18
 }
19 19
\ No newline at end of file
Please login to merge, or discard this patch.
src/Api/Endpoints/Organizations.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -6,21 +6,21 @@
 block discarded – undo
6 6
 
7 7
 class Organizations extends Endpoint
8 8
 {
9
-    use CrudEndpoint;
9
+	use CrudEndpoint;
10 10
 
11
-    /**
12
-     * @var string
13
-     */
14
-    protected $endpoint = 'organizations';
11
+	/**
12
+	 * @var string
13
+	 */
14
+	protected $endpoint = 'organizations';
15 15
 
16
-    /**
17
-     * @param string $id
18
-     * @return array
19
-     */
20
-    public function getById($id)
21
-    {
22
-        $this->headers['organizationId'] = $id;
16
+	/**
17
+	 * @param string $id
18
+	 * @return array
19
+	 */
20
+	public function getById($id)
21
+	{
22
+		$this->headers['organizationId'] = $id;
23 23
 
24
-        return parent::getById($id);
25
-    }
24
+		return parent::getById($id);
25
+	}
26 26
 }
27 27
\ No newline at end of file
Please login to merge, or discard this patch.
src/Api/Endpoints/Collections.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -7,10 +7,10 @@
 block discarded – undo
7 7
 
8 8
 class Collections extends Endpoint
9 9
 {
10
-    use BelongsToOrganization, CrudEndpoint;
10
+	use BelongsToOrganization, CrudEndpoint;
11 11
 
12
-    /**
13
-     * @var string
14
-     */
15
-    protected $endpoint = 'collections';
12
+	/**
13
+	 * @var string
14
+	 */
15
+	protected $endpoint = 'collections';
16 16
 }
17 17
\ No newline at end of file
Please login to merge, or discard this patch.