File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed
proposed/psr-4-autoloader Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -58,12 +58,14 @@ to place files that will be autoloaded according the specification.
58
58
59
59
## 3. Examples
60
60
61
- | Fully Qualified Class Name | Qualified Name | Base Directory | Corresponding File Path |
62
- | :---------------------------- | :---------------- | :------------------------ | :---------------------------------------- |
63
- | \Acme\Log\Writer\File_Writer | Acme\Log\Writer | ./acme-log-writer/lib/ | ./acme-log-writer/lib/File_Writer.php |
64
- | \Aura\Web\Response\Status | Aura\Web | /path/to/aura-web/src/ | /path/to/aura-web/src/Response/Status.php |
65
- | \Symfony\Core\Request | Symfony\Core | ./vendor/Symfony/Core/ | ./vendor/Symfony/Core/Request.php |
66
- | \Zend\Acl | Zend | /usr/includes/Zend/ | /usr/includes/Zend/Acl.php |
61
+ The table below shows the expected file path [ 4] for given inputs [ 1] , [ 2] , & [ 3] :
62
+
63
+ Fully Qualified Class Name[ 1] | Qualified Name[ 2] | Base Directory[ 3] | Corresponding File Path[ 4]
64
+ ------------------------------|--------------------|--------------------------|-------------------------------------------
65
+ \Acme\Log\Writer\File_Writer | Acme\Log\Writer | ./acme-log-writer/lib/ | ./acme-log-writer/File_Writer.php
66
+ \Aura\Web\Response\Status | Aura\Web | /path/to/aura-web/src/ | /path/to/aura-web/src/Response/Status.php
67
+ \Symfony\Core\Request | Symfony\Core | ./vendor/Symfony/Core/ | ./vendor/Symfony/Core/Request.php
68
+ \Zend\Acl | Zend | /usr/includes/Zend/ | /usr/includes/Zend/Acl.php
67
69
68
70
For example implementations of autoloaders conforming to the specification,
69
71
please see the [ examples file] [ ] . Example implementations MUST NOT be regarded
You can’t perform that action at this time.
0 commit comments