Skip to content

Commit da14762

Browse files
committed
Fix: Rename Options->include() to Options->inc() - this is required for PHP 5 compatability.
IMPORTANT - This means any use of `Options->include()` will need to be updated!
1 parent 2aa0310 commit da14762

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Editor/Options.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ public function fn($_ = null)
193193
*
194194
* @return ($inc is null ? string[] : $this)
195195
*/
196-
public function include($inc = null)
196+
public function inc($inc = null)
197197
{
198198
if ($inc === null) {
199199
return $this->_includes;

0 commit comments

Comments
 (0)