Notes in this project's code
Notes are marked in code by writing @NOTE. Everything on the line after it is captured.
[line number] Trimmed Text of the line
Notes for src/MdVerb/AstVerb.php
- [28]
@ast()can accept a dot-path likeclass.ClassName.methods.MethodName, but the array-access version is recommended.
Notes for src/Ext/Notes.php
- [40] next line lists 'comment-characters' that are allowed prior to an @NOTE
- [73] This section outputs Notes.md & contains the explainer text
Notes for bin//scrawl.phar
- [79710] If the directive stack is empty, creates a new directive layer
- [102997]
$varDelimis a string of characters used to separate dynamic portions of a url. - [102998]
$varDelimis a global setting, but you can change it, add routes, change it, add routes, etc. - [102999]
patternrefers to an unparsed url pattern like/{category}/{blog_name}/ - [103000] added routers take a
\Lia\Obj\Requestobject - [103001] route derivers accept
falseand return array of patterns or a\Lia\Obj\Requestobject - [103002] test patterns (or testReg) are simplified patterns with
?in place of dynamic paramater names & are used internally - [103003]
$routeMapcontains all the info needed for selecting which route to use - [103004] optional paramaters (
/blog/{?optional}/) only allow for one optional paramater - [103043]
$varDelimis a string of characters used to separate dynamic portions of a url. - [103044]
$varDelimis a global setting, but you can change it, add routes, change it, add routes, etc. - [103045]
patternrefers to an unparsed url pattern like/{category}/{blog_name}/ - [103046] added routers take a
\Lia\Obj\Requestobject - [103047] route derivers accept
falseand return array of patterns or a\Lia\Obj\Requestobject - [103048] test patterns (or testReg) are simplified patterns with
?in place of dynamic paramater names & are used internally - [103049]
$routeMapcontains all the info needed for selecting which route to use - [103050] optional paramaters (
/blog/{?optional}/) only allow for one optional paramater - [103066]
$routeMapcontains all the info needed for selecting which route to use - [103067] optional paramaters (
/blog/{?optional}/) only allow for one optional paramater - [103162] this setting is global across all routes. You can circumvent this by using a second router addon