Completed
Branch master (926b0e)
by Arkadius
03:16
created
Category
src/DeepL.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -12,27 +12,27 @@  discard block
 block discarded – undo
12 12
     /**
13 13
      * API v1 URL
14 14
      */
15
-    const API_URL_V1               = 'https://api.deepl.com/v1/translate';
15
+    const API_URL_V1 = 'https://api.deepl.com/v1/translate';
16 16
 
17 17
     /**
18 18
      * API v2 URL
19 19
      */
20
-    const API_URL_V2               = 'https://api.deepl.com/v2/translate';
20
+    const API_URL_V2 = 'https://api.deepl.com/v2/translate';
21 21
 
22 22
     /**
23 23
      * API URL: Parameter auth_key
24 24
      */
25
-    const API_URL_AUTH_KEY         = 'auth_key=%s';
25
+    const API_URL_AUTH_KEY = 'auth_key=%s';
26 26
 
27 27
     /**
28 28
      * API URL: Parameter text
29 29
      */
30
-    const API_URL_TEXT             = 'text=%s';
30
+    const API_URL_TEXT = 'text=%s';
31 31
 
32 32
     /**
33 33
      * API URL: Parameter source_lang
34 34
      */
35
-    const API_URL_SOURCE_LANG      = 'source_lang=%s';
35
+    const API_URL_SOURCE_LANG = 'source_lang=%s';
36 36
 
37 37
     /**
38 38
      * API URL: Parameter target_lang
@@ -42,12 +42,12 @@  discard block
 block discarded – undo
42 42
     /**
43 43
      * API URL: Parameter tag_handling
44 44
      */
45
-    const API_URL_TAG_HANDLING     = 'tag_handling=%s';
45
+    const API_URL_TAG_HANDLING = 'tag_handling=%s';
46 46
 
47 47
     /**
48 48
      * API URL: Parameter ignore_tags
49 49
      */
50
-    const API_URL_IGNORE_TAGS      = 'ignore_tags=%s';
50
+    const API_URL_IGNORE_TAGS = 'ignore_tags=%s';
51 51
 
52 52
     /**
53 53
      * DeepL HTTP error codes
Please login to merge, or discard this patch.