Rename all the files to camelCase and update the class name in the files
This commit is contained in:
18
src/Version.php
Normal file
18
src/Version.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
/** DomFramework
|
||||
* @package domframework
|
||||
* @author Dominique Fournier <dominique@fournier38.fr>
|
||||
* @license BSD
|
||||
*/
|
||||
|
||||
namespace Domframework;
|
||||
|
||||
/** This is the version of DomFramework.
|
||||
* It can be used to test if the framework is uptodate for the application
|
||||
* with :
|
||||
* require ("domframework/version.php");
|
||||
* if (!defined ("DOMFRAMEWORK_VERSION") ||
|
||||
* version_compare (DOMFRAMEWORK_VERSION, "0.6") < 0)
|
||||
* die ("Your DomFramework version is too old : 0.6 minimum\n");
|
||||
*/
|
||||
define ("DOMFRAMEWORK_VERSION", "0.58");
|
||||
Reference in New Issue
Block a user