Skip to content

Commit

Permalink
IHF: Test autoloading.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-ivanov committed Jun 17, 2016
1 parent ec46658 commit e08cb03
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/array.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<?php

var_dump('array');
6 changes: 5 additions & 1 deletion src/autoload.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<?php

// ...
$helpers = glob('.');
foreach ($helpers as $helper) {
//require_once $helper;
var_dump($helper);
}
3 changes: 3 additions & 0 deletions src/date.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<?php

var_dump('date');
3 changes: 3 additions & 0 deletions src/test.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<?php

var_dump('test');

0 comments on commit e08cb03

Please sign in to comment.