Fix coding standards errors.

This commit is contained in:
mark_story 2012-07-26 21:22:50 -04:00
parent 6e0cf0dab7
commit f963e378b5
4 changed files with 8 additions and 12 deletions

View file

@ -1,11 +1,5 @@
<?php
/**
* This is i18n Schema file
*
* Use it to configure database for i18n
*
* PHP 5
*
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
* Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
*
@ -19,13 +13,15 @@
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
/*
/**
*
* Using the Schema command line utility
* cake schema run create i18n
*
* Use it to configure database for i18n
*
* cake schema run create i18n
*/
class i18nSchema extends CakeSchema {
class I18nSchema extends CakeSchema {
public $name = 'i18n';

View file

@ -72,7 +72,7 @@ if (!defined('WWW_ROOT')) {
// for built-in server
if (php_sapi_name() == 'cli-server') {
$_SERVER['PHP_SELF'] = '/'.basename(__FILE__);
$_SERVER['PHP_SELF'] = '/' . basename(__FILE__);
}
if (!defined('CAKE_CORE_INCLUDE_PATH')) {

View file

@ -74,7 +74,7 @@ if (!defined('WWW_ROOT')) {
// for built-in server
if (php_sapi_name() == 'cli-server') {
$_SERVER['PHP_SELF'] = '/'.basename(__FILE__);
$_SERVER['PHP_SELF'] = '/' . basename(__FILE__);
}
if (!defined('CAKE_CORE_INCLUDE_PATH')) {