You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ih...@apache.org on 2011/12/14 12:23:04 UTC

svn commit: r1214165 - /logging/log4php/trunk/src/main/php/LoggerConfigurable.php

Author: ihabunek
Date: Wed Dec 14 11:23:04 2011
New Revision: 1214165

URL: http://svn.apache.org/viewvc?rev=1214165&view=rev
Log:
Added missing licence header to LoggerConfigurable.

Modified:
    logging/log4php/trunk/src/main/php/LoggerConfigurable.php

Modified: logging/log4php/trunk/src/main/php/LoggerConfigurable.php
URL: http://svn.apache.org/viewvc/logging/log4php/trunk/src/main/php/LoggerConfigurable.php?rev=1214165&r1=1214164&r2=1214165&view=diff
==============================================================================
--- logging/log4php/trunk/src/main/php/LoggerConfigurable.php (original)
+++ logging/log4php/trunk/src/main/php/LoggerConfigurable.php Wed Dec 14 11:23:04 2011
@@ -1,8 +1,31 @@
 <?php
+/**
+* Licensed to the Apache Software Foundation (ASF) under one or more
+* contributor license agreements. See the NOTICE file distributed with
+* this work for additional information regarding copyright ownership.
+* The ASF licenses this file to You under the Apache License, Version 2.0
+* (the "License"); you may not use this file except in compliance with
+* the License. You may obtain a copy of the License at
+*
+*	   http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*
+* @package log4php
+*/
 
 /** 
  * A base class from which all classes which have configurable properties are 
  * extended. Provides a generic setter with integrated validation.  
+ * 
+ * @package log4php
+ * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
+ * @version $Revision $
+ * @since 2.2
  */
 abstract class LoggerConfigurable {