Skip to content
This repository was archived by the owner on Oct 20, 2025. It is now read-only.

Commit fb92ce2

Browse files
committed
worked onon csrf typo
1 parent c1ffd72 commit fb92ce2

File tree

2 files changed

+69
-93
lines changed

2 files changed

+69
-93
lines changed

src/Formatter/ViewFormatter.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,16 @@ class ViewFormatter
3939
*
4040
* @param string $contents The raw contents of the view file to be formatted.
4141
*/
42-
public function __construct (string $contents)
42+
public function __construct(string $contents)
4343
{
4444
$this->contents = $contents;
4545

4646
// Apply various formatting operations
47+
$this->psl_tags();
48+
$this->bracket_interpolation();
4749
$this->includes();
4850
$this->hot_reload();
4951
$this->import_quotes();
50-
$this->bracket_interpolation();
51-
$this->psl_tags();
5252
}
5353

5454
/**
@@ -61,7 +61,7 @@ public function __construct (string $contents)
6161
*
6262
* @return string The formatted contents of the view file with properties applied.
6363
*/
64-
public function resolve (mixed ...$props)
64+
public function resolve(mixed ...$props)
6565
{
6666
// Apply properties handling to the view
6767
$this->properties(...$props);

0 commit comments

Comments
 (0)