File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change 3
3
namespace jblond ;
4
4
5
5
/**
6
- * Class Autoloader
6
+ * Autoloader Class
7
+ *
8
+ * Library to automatically include required files when a script calls a class.
9
+ *
10
+ * PHP version 7.1 or greater
11
+ *
7
12
* @package jblond
13
+ * @author Chris Boulton <chris.boulton@interspire.com>
14
+ * @copyright (c) 2009 Chris Boulton
15
+ * @license New BSD License http://www.opensource.org/licenses/bsd-license.php
16
+ * @version 1.15
17
+ * @link https://github.com/JBlond/php-diff
8
18
*/
9
19
class Autoloader
10
20
{
11
21
12
22
/**
13
- * Autoloader constructor.
23
+ * Constructor.
24
+ *
25
+ * A function is registered as an __autoload() implementation to include and evaluate the class file whan this class
26
+ * is called.
14
27
*/
15
28
public function __construct ()
16
29
{
You can’t perform that action at this time.
0 commit comments