@@ -75,10 +75,10 @@ |
||
75 | 75 | } elseif (property_exists($mixed, $key) && null !== $mixed->$key) { |
76 | 76 | $mixed = $mixed->$key; |
77 | 77 | } else { |
78 | - try{ |
|
78 | + try { |
|
79 | 79 | $temp = $mixed->$key; |
80 | 80 | return $temp; |
81 | - }catch(Exception $e){ |
|
81 | + } catch (Exception $e) { |
|
82 | 82 | return $defaultValue; |
83 | 83 | } |
84 | 84 |
@@ -78,7 +78,7 @@ |
||
78 | 78 | try{ |
79 | 79 | $temp = $mixed->$key; |
80 | 80 | return $temp; |
81 | - }catch(Exception $e){ |
|
81 | + } catch(Exception $e){ |
|
82 | 82 | return $defaultValue; |
83 | 83 | } |
84 | 84 |