Changeset 14788

Show
Ignore:
Timestamp:
06/28/08 23:00:53 (5 years ago)
Author:
kumatch
Message:

Changed some private methods to protected.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • events/phpframework/piece_framework/trunk/libs/Phwittr/User.php

    r14774 r14788  
    6666     * __construct 
    6767     *  
    68      * @param integer $userName 
     68     * @param string $userName 
    6969     * @param integer $watcherId 
    7070     * @return void 
     
    370370 
    371371    /**#@+ 
    372      * @access private 
     372     * @access protected 
    373373     */ 
    374374 
     
    381381     * @return object 
    382382     */ 
    383     private function _createUserListMapper($offset = null) 
     383    protected function _createUserListMapper($offset = null) 
    384384    { 
    385385        $mapper = Piece_ORM::getMapper('Users'); 
     
    399399     * @return object 
    400400     */ 
    401     private function _createStatusListMapper($offset = null) 
     401    protected function _createStatusListMapper($offset = null) 
    402402    { 
    403403        $mapper = Piece_ORM::getMapper('Statuses'); 
     
    418418     * @return void 
    419419     */ 
    420     private function _checkNextPage(&$mapper, $page) 
     420    protected function _checkNextPage(&$mapper, $page) 
    421421    { 
    422422        $count = $mapper->getCount(); 
     
    427427        } 
    428428    } 
     429 
     430    /**#@-*/ 
     431 
     432    /**#@+ 
     433     * @access private 
     434     */ 
    429435 
    430436    /**#@-*/