Skip to content

Commit e6cd9e0

Browse files
committed
Code commenting.
1 parent 4352698 commit e6cd9e0

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

lib/Autoloader.php

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,27 @@
33
namespace jblond;
44

55
/**
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+
*
712
* @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
818
*/
919
class Autoloader
1020
{
1121

1222
/**
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.
1427
*/
1528
public function __construct()
1629
{

0 commit comments

Comments
 (0)