Completed
Push — master ( dd6000...fb0568 )
by
unknown
02:20
created
src/Datium.php 1 patch
Braces   +6 added lines, -4 removed lines patch added patch discarded remove patch
@@ -358,11 +358,13 @@
 block discarded – undo
358 358
    */
359 359
   public function get( $format = 'Y-m-d H:i:s' ) {
360 360
 
361
-    if( is_null( $this->fromConfig ) )
362
-      $this->fromConfig = include( 'CalendarSettings/' . ucfirst( $this->translate_from ) . '.php' );
361
+    if( is_null( $this->fromConfig ) ) {
362
+          $this->fromConfig = include( 'CalendarSettings/' . ucfirst( $this->translate_from ) . '.php' );
363
+    }
363 364
 
364
-    if( is_null( $this->toConfig ) )
365
-        $this->toConfig = include( 'CalendarSettings/' . ucfirst( $this->translate_to ) . '.php' );
365
+    if( is_null( $this->toConfig ) ) {
366
+            $this->toConfig = include( 'CalendarSettings/' . ucfirst( $this->translate_to ) . '.php' );
367
+    }
366 368
 
367 369
       $string_date = $this->date_time->format( $format );
368 370
 
Please login to merge, or discard this patch.