Passed
Pull Request — master (#3)
by
unknown
08:48
created
src/Api/Endpoints/Cards.php 1 patch
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -4,24 +4,24 @@
 block discarded – undo
4 4
 
5 5
 class Cards extends CrudEndpoint
6 6
 {
7
-    /**
8
-     * @var string
9
-     */
10
-    protected $endpoint = 'cards';
7
+	/**
8
+	 * @var string
9
+	 */
10
+	protected $endpoint = 'cards';
11 11
 
12
-    /**
13
-     * @param string $cardId
14
-     * @param bool $everywhere
15
-     * @return mixed
16
-     */
17
-    public function delete($cardId, $everywhere)
18
-    {
19
-        return $this
20
-            ->getHttp()
21
-            ->delete(
22
-                $this->makeRequestUrl($cardId),
23
-                ['everywhere' => $everywhere],
24
-                $this->getHeaders()
25
-            );
26
-    }
12
+	/**
13
+	 * @param string $cardId
14
+	 * @param bool $everywhere
15
+	 * @return mixed
16
+	 */
17
+	public function delete($cardId, $everywhere)
18
+	{
19
+		return $this
20
+			->getHttp()
21
+			->delete(
22
+				$this->makeRequestUrl($cardId),
23
+				['everywhere' => $everywhere],
24
+				$this->getHeaders()
25
+			);
26
+	}
27 27
 }
Please login to merge, or discard this patch.