Completed
Pull Request — master (#34)
by Adam
03:27
created
src/Endpoints/Environments.php 1 patch
Indentation   +58 added lines, -58 removed lines patch added patch discarded remove patch
@@ -340,7 +340,7 @@  discard block
 block discarded – undo
340 340
     {
341 341
 
342 342
         $options = [
343
-          'form_params' => $config,
343
+            'form_params' => $config,
344 344
         ];
345 345
 
346 346
         return new OperationResponse(
@@ -709,12 +709,12 @@  discard block
 block discarded – undo
709 709
         );
710 710
     }
711 711
 
712
-   /**
713
-    * Returns a list of log forwarding destinations.
714
-    *
715
-    * @param string $environmentUuid The environment ID
716
-    * @return LogForwardingDestinationsResponse
717
-    */
712
+    /**
713
+     * Returns a list of log forwarding destinations.
714
+     *
715
+     * @param string $environmentUuid The environment ID
716
+     * @return LogForwardingDestinationsResponse
717
+     */
718 718
     public function getLogDestinations($environmentUuid)
719 719
     {
720 720
         return new LogForwardingDestinationsResponse(
@@ -725,13 +725,13 @@  discard block
 block discarded – undo
725 725
         );
726 726
     }
727 727
 
728
-   /**
729
-    * Returns a specific log forwarding destination.
730
-    *
731
-    * @param string $environmentUuid The environment ID
732
-    * @param int    $destinationId
733
-    * @return LogForwardingDestinationResponse
734
-    */
728
+    /**
729
+     * Returns a specific log forwarding destination.
730
+     *
731
+     * @param string $environmentUuid The environment ID
732
+     * @param int    $destinationId
733
+     * @return LogForwardingDestinationResponse
734
+     */
735 735
     public function getLogDestination($environmentUuid, $destinationId)
736 736
     {
737 737
         return new LogForwardingDestinationResponse(
@@ -742,17 +742,17 @@  discard block
 block discarded – undo
742 742
         );
743 743
     }
744 744
 
745
-   /**
746
-    * Creates a log forwarding destination.
747
-    *
748
-    * @param string $environmentUuid
749
-    * @param string $label
750
-    * @param array  $sources
751
-    * @param string $consumer
752
-    * @param array  $credentials
753
-    * @param string $address
754
-    * @return OperationResponse
755
-    */
745
+    /**
746
+     * Creates a log forwarding destination.
747
+     *
748
+     * @param string $environmentUuid
749
+     * @param string $label
750
+     * @param array  $sources
751
+     * @param string $consumer
752
+     * @param array  $credentials
753
+     * @param string $address
754
+     * @return OperationResponse
755
+     */
756 756
     public function createLogDestination($environmentUuid, $label, $sources, $consumer, $credentials, $address)
757 757
     {
758 758
 
@@ -771,13 +771,13 @@  discard block
 block discarded – undo
771 771
         );
772 772
     }
773 773
 
774
-   /**
775
-    * Delete a specific log forwarding destination.
776
-    *
777
-    * @param string $environmentUuid
778
-    * @param int    $destId
779
-    * @return OperationResponse
780
-    */
774
+    /**
775
+     * Delete a specific log forwarding destination.
776
+     *
777
+     * @param string $environmentUuid
778
+     * @param int    $destId
779
+     * @return OperationResponse
780
+     */
781 781
     public function deleteLogDestination($environmentUuid, $destId)
782 782
     {
783 783
         return new OperationResponse(
@@ -785,13 +785,13 @@  discard block
 block discarded – undo
785 785
         );
786 786
     }
787 787
 
788
-   /**
789
-    * Disables a log forwarding destination.
790
-    *
791
-    * @param string $environmentUuid
792
-    * @param int    $destId
793
-    * @return OperationResponse
794
-    */
788
+    /**
789
+     * Disables a log forwarding destination.
790
+     *
791
+     * @param string $environmentUuid
792
+     * @param int    $destId
793
+     * @return OperationResponse
794
+     */
795 795
     public function disableLogDestination($environmentUuid, $destId)
796 796
     {
797 797
         return new OperationResponse(
@@ -802,13 +802,13 @@  discard block
 block discarded – undo
802 802
         );
803 803
     }
804 804
 
805
-   /**
806
-    * Disables a log forwarding destination.
807
-    *
808
-    * @param string $environmentUuid
809
-    * @param int    $destId
810
-    * @return OperationResponse
811
-    */
805
+    /**
806
+     * Disables a log forwarding destination.
807
+     *
808
+     * @param string $environmentUuid
809
+     * @param int    $destId
810
+     * @return OperationResponse
811
+     */
812 812
     public function enableLogDestination($environmentUuid, $destId)
813 813
     {
814 814
         return new OperationResponse(
@@ -819,18 +819,18 @@  discard block
 block discarded – undo
819 819
         );
820 820
     }
821 821
 
822
-   /**
823
-    * Updates a log forwarding destination.
824
-    *
825
-    * @param string $environmentUuid
826
-    * @param int    $destId
827
-    * @param string $label
828
-    * @param array  $sources
829
-    * @param string $consumer
830
-    * @param array  $creds
831
-    * @param string $address
832
-    * @return OperationResponse
833
-    */
822
+    /**
823
+     * Updates a log forwarding destination.
824
+     *
825
+     * @param string $environmentUuid
826
+     * @param int    $destId
827
+     * @param string $label
828
+     * @param array  $sources
829
+     * @param string $consumer
830
+     * @param array  $creds
831
+     * @param string $address
832
+     * @return OperationResponse
833
+     */
834 834
     public function updateLogDestination($environmentUuid, $destId, $label, $sources, $consumer, $creds, $address)
835 835
     {
836 836
 
Please login to merge, or discard this patch.