]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Irc/extlib/phergie/Tests/Phergie/Plugin/TestNonInstantiablePluginFromFile.php
Documentation + filename uniqueness in File class
[quix0rs-gnu-social.git] / plugins / Irc / extlib / phergie / Tests / Phergie / Plugin / TestNonInstantiablePluginFromFile.php
1 <?php
2 /**
3  * Phergie
4  *
5  * PHP version 5
6  *
7  * LICENSE
8  *
9  * This source file is subject to the new BSD license that is bundled
10  * with this package in the file LICENSE.
11  * It is also available through the world-wide-web at this URL:
12  * http://phergie.org/license
13  *
14  * @category  Phergie
15  * @package   Phergie_Tests
16  * @author    Phergie Development Team <team@phergie.org>
17  * @copyright 2008-2010 Phergie Development Team (http://phergie.org)
18  * @license   http://phergie.org/license New BSD License
19  * @link      http://pear.phergie.org/package/Phergie_Tests
20  */
21
22 /**
23  * Creates a plugin on the filesystem that can be used by
24  * Phergie_Plugin_Handler's addPath utility to be located and loaded.
25  *
26  * @category Phergie
27  * @package  Phergie_Tests
28  * @author   Phergie Development Team <team@phergie.org>
29  * @license  http://phergie.org/license New BSD License
30  * @link     http://pear.phergie.org/package/Phergie_Tests
31  */
32 class Phergie_Plugin_TestNonInstantiablePluginFromFile
33 extends Phergie_Plugin_Abstract
34 {
35     /**
36      * Private constructor to ensure that this class is not instantiable.
37      *
38      * @return void
39      */
40     private function __construct()
41     {
42     }
43 }