Skip to content

Commit

Permalink
fix: broken type hint in constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
ipranjal authored Oct 17, 2024
1 parent 94570df commit 023181d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/BladeOne.php
Original file line number Diff line number Diff line change
Expand Up @@ -249,8 +249,8 @@ class BladeOne
* $blade=new BladeOne("pathtemplate","pathcompile",BladeOne::MODE_AUTO,2);
* ```
*
* @param null $templatePath If null then it uses (caller_folder)/views
* @param null $compiledPath If null then it uses (caller_folder)/compiles
* @param string|null $templatePath If null then it uses (caller_folder)/views
* @param string|null $compiledPath If null then it uses (caller_folder)/compiles
* @param int $mode =[BladeOne::MODE_AUTO,BladeOne::MODE_DEBUG,BladeOne::MODE_FAST,BladeOne::MODE_SLOW][$i]<br>
* **BladeOne::MODE_AUTO** (default mode)<br>
* **BladeOne::MODE_DEBUG** errors will be more verbose, and it will compile code every
Expand Down

0 comments on commit 023181d

Please sign in to comment.