Changeset 20740

Show
Ignore:
Timestamp:
10/05/08 02:02:16 (3 months ago)
Author:
wads
Message:

fixed duplicate function definition named getExpire(). write license.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/php/ZendFramework_ext/library/Wads/Auth/Storage/Cookie.php

    r18259 r20740  
    11<?php 
    2   
     2/** 
     3 * @see Zend_Auth_Storage_Interface 
     4 */ 
    35require_once 'Zend/Auth/Storage/Interface.php'; 
    4   
     6 
     7 
     8/** 
     9 * @copyright  wads (wadslab@gmail.com) 
     10 * @license    http://framework.zend.com/license/new-bsd     New BSD License 
     11 */ 
    512class Wads_Auth_Storage_Cookie implements Zend_Auth_Storage_Interface 
    613{ 
     
    235242        return $this->_expire; 
    236243    } 
    237     protected function getExpire() { 
     244     
     245    public function getExpire() { 
    238246        return $this->getExpiryTime(); 
    239247    } 
     
    252260    } 
    253261     
    254     protected function getExpire() { 
    255         return $this->getExpiryTime(); 
    256     } 
    257  
    258262    public function setExpiryTerm($term = null) { 
    259263        if(!is_numeric($term)) {