Completed
Push — develop ( 410fb0...540fdf )
by
unknown
02:31
created
Classes/Provider/Configuration.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
     protected function getApiCallsArray(){
51 51
         $this->fileService = GeneralUtility::makeInstance(FileService::class);
52 52
         $apiCallData      = $this->fileService->readFile(
53
-           PATH_site . 'typo3conf/ext/onpage_integration/Configuration/ApiCalls.json'
53
+            PATH_site . 'typo3conf/ext/onpage_integration/Configuration/ApiCalls.json'
54 54
         );
55 55
 
56 56
         return json_decode($apiCallData, true);
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -40,17 +40,17 @@
 block discarded – undo
40 40
     /**
41 41
      * @return array
42 42
      */
43
-    public function getAllConfigurationData(){
43
+    public function getAllConfigurationData() {
44 44
         return $this->getApiCallsArray();
45 45
     }
46 46
 
47 47
     /**
48 48
      * @return array
49 49
      */
50
-    protected function getApiCallsArray(){
50
+    protected function getApiCallsArray() {
51 51
         $this->fileService = GeneralUtility::makeInstance(FileService::class);
52
-        $apiCallData      = $this->fileService->readFile(
53
-           PATH_site . 'typo3conf/ext/onpage_integration/Configuration/ApiCalls.json'
52
+        $apiCallData = $this->fileService->readFile(
53
+           PATH_site.'typo3conf/ext/onpage_integration/Configuration/ApiCalls.json'
54 54
         );
55 55
 
56 56
         return json_decode($apiCallData, true);
Please login to merge, or discard this patch.