Ignore:
Timestamp:
2013/02/18 19:09:54 (10 years ago)
Author:
shutta
Message:

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.12.4)
Zend Framework PHP 標準コーディング規約のコーディングスタイルへ準拠。
classおよびfunctionの開始波括弧「{」のスタイルを修正。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/tests/class/test/util/User_Utils.php

    r22164 r22567  
    55 * 
    66 */ 
    7 class User_Utils { 
     7class User_Utils 
     8{ 
    89 
    910  /** 
     
    1314   * @param deviceType  端末種別ID 
    1415   */ 
    15   public static function setDeviceType($deviceType) { 
     16  public static function setDeviceType($deviceType) 
     17  { 
    1618    SC_Display_Ex::setDummyDevice($deviceType); 
    1719  } 
     
    2325   * @param isLogin true:ログインしている、false:ログインしていない 
    2426   */ 
    25   public static function setLoginState($isLogin, $customer = null, $objQuery = null) { 
     27  public static function setLoginState($isLogin, $customer = null, $objQuery = null) 
     28  { 
    2629    if (!$isLogin) { 
    2730      $_SESSION['customer']['customer_id'] = null; 
     
    3942   * ユーザ情報を外部から設定しなかった場合のデフォルト値を取得します。 
    4043   */ 
    41   private static function getDefaultCustomer() { 
     44  private static function getDefaultCustomer() 
     45  { 
    4246    $arrValue['customer_id'] = '999999998'; 
    4347    $arrValue['name01'] = '苗字'; 
Note: See TracChangeset for help on using the changeset viewer.