コード例 #1
0
 /**
  * Constructs a SocialEngine_Sniffs_Methods_MethodNameSniff.
  */
 public function __construct()
 {
     parent::__construct();
     $rawAllowSnakeCaseMethodName = PHP_CodeSniffer::getConfigData('allowSnakeCaseMethodName');
     if (!is_null($rawAllowSnakeCaseMethodName)) {
         $this->allowSnakeCaseMethodName = json_decode($rawAllowSnakeCaseMethodName, true);
     }
 }