From: Alexandre Emsenhuber Date: Mon, 21 May 2012 19:56:04 +0000 (+0200) Subject: Added missing GPLv2 headers in some places. X-Git-Tag: 1.31.0-rc.0~23548 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=1082c71e9b63d2963139e91bf4de66afca7c1167;p=lhc%2Fweb%2Fwiklou.git Added missing GPLv2 headers in some places. Also made file/class documentation more consistent. Change-Id: Ibe7815124d6915792dcbb150d01df21d9b22b0b0 --- diff --git a/includes/CacheHelper.php b/includes/CacheHelper.php index 6b6a5940ff..5209857e4b 100644 --- a/includes/CacheHelper.php +++ b/includes/CacheHelper.php @@ -1,13 +1,32 @@ */ + +/** + * Interface for all classes implementing CacheHelper functionality. + * + * @since 1.20 + */ interface ICacheHelper { /** @@ -81,11 +100,6 @@ interface ICacheHelper { * After adding the last HTML that should be cached, call $this->saveCache(); * * @since 1.20 - * - * @file CacheHelper.php - * - * @licence GNU GPL v2 or later - * @author Jeroen De Dauw < jeroendedauw@gmail.com > */ class CacheHelper implements ICacheHelper { @@ -360,4 +374,4 @@ class CacheHelper implements ICacheHelper { $this->onInitHandler = $handlerFunction; } -} \ No newline at end of file +} diff --git a/includes/Category.php b/includes/Category.php index 4f1e423e7f..79870692df 100644 --- a/includes/Category.php +++ b/includes/Category.php @@ -1,14 +1,33 @@