@@ -21,7 +21,7 @@ |
||
21 | 21 | |
22 | 22 | public function register() |
23 | 23 | { |
24 | - $this->app->bind('accordion', function () { |
|
24 | + $this->app->bind('accordion', function() { |
|
25 | 25 | return new AccordionFactory(); |
26 | 26 | }); |
27 | 27 | } |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | $count = 0; |
49 | 49 | $text = preg_replace_callback( |
50 | 50 | $this->regex, |
51 | - function ($m) use (&$count) { |
|
51 | + function($m) use (&$count) { |
|
52 | 52 | $count++; |
53 | 53 | |
54 | 54 | return str_replace( |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | * @param string $icon_kind |
72 | 72 | * @return array $ret |
73 | 73 | **/ |
74 | - public function getAccordions($text, string $icon_kind = ''){ |
|
74 | + public function getAccordions($text, string $icon_kind = '') { |
|
75 | 75 | |
76 | 76 | $accordion = new AccordionFactory($icon_kind); |
77 | 77 | $ret = $accordion->replace_accordion_strings_with_template($text); |