统计TP文件注释,统一psr2换行规范

This commit is contained in:
尘缘
2016-05-08 07:58:06 +08:00
parent 72398312b2
commit 8bc451d21c
29 changed files with 13 additions and 25 deletions

View File

@@ -8,6 +8,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com> // | Author: liu21st <liu21st@gmail.com>
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
namespace think; namespace think;
class Build class Build

View File

@@ -11,7 +11,6 @@
namespace think; namespace think;
use ArrayAccess; use ArrayAccess;
use ArrayIterator; use ArrayIterator;
use Countable; use Countable;

View File

@@ -11,7 +11,6 @@
namespace think; namespace think;
use think\paginator\Collection as PaginatorCollection; use think\paginator\Collection as PaginatorCollection;
abstract class Paginator abstract class Paginator

View File

@@ -11,7 +11,6 @@
namespace think; namespace think;
use think\process\exception\Failed as ProcessFailedException; use think\process\exception\Failed as ProcessFailedException;
use think\process\exception\Timeout as ProcessTimeoutException; use think\process\exception\Timeout as ProcessTimeoutException;
use think\process\pipes\Pipes; use think\process\pipes\Pipes;

View File

@@ -8,6 +8,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com> // | Author: liu21st <liu21st@gmail.com>
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
namespace think; namespace think;
class Session class Session

View File

@@ -11,7 +11,6 @@
namespace think\console\helper; namespace think\console\helper;
class Debug extends Helper class Debug extends Helper
{ {

View File

@@ -11,7 +11,6 @@
namespace think\console\helper; namespace think\console\helper;
use think\console\Output; use think\console\Output;
use think\process\Builder as ProcessBuilder; use think\process\Builder as ProcessBuilder;
use think\process as ThinkProcess; use think\process as ThinkProcess;

View File

@@ -11,7 +11,6 @@
namespace think\console\helper; namespace think\console\helper;
use think\console\Input; use think\console\Input;
use think\console\Output; use think\console\Output;
use think\console\helper\question\Question as OutputQuestion; use think\console\helper\question\Question as OutputQuestion;

View File

@@ -11,7 +11,6 @@
namespace think\console\helper; namespace think\console\helper;
use think\console\command\Command; use think\console\command\Command;
class Set implements \IteratorAggregate class Set implements \IteratorAggregate

View File

@@ -11,7 +11,6 @@
namespace think\console\input; namespace think\console\input;
class Argument class Argument
{ {

View File

@@ -11,7 +11,6 @@
namespace think\console\input; namespace think\console\input;
class Definition class Definition
{ {

View File

@@ -11,7 +11,6 @@
namespace think\console\output; namespace think\console\output;
use think\console\Output; use think\console\Output;
class Nothing extends Output class Nothing extends Output

View File

@@ -11,7 +11,6 @@
namespace think\console\output; namespace think\console\output;
class Stream class Stream
{ {

View File

@@ -11,7 +11,6 @@
namespace think\console\output\formatter; namespace think\console\output\formatter;
class Stack class Stack
{ {

View File

@@ -8,6 +8,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com> // | Author: liu21st <liu21st@gmail.com>
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
namespace think\controller; namespace think\controller;
/** /**

View File

@@ -8,6 +8,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com> // | Author: liu21st <liu21st@gmail.com>
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
namespace think\controller; namespace think\controller;
/** /**

View File

@@ -8,6 +8,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com> // | Author: liu21st <liu21st@gmail.com>
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
namespace think\controller; namespace think\controller;
/** /**

View File

@@ -8,6 +8,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com> // | Author: liu21st <liu21st@gmail.com>
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
namespace think\controller; namespace think\controller;
/** /**

View File

@@ -8,6 +8,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com> // | Author: liu21st <liu21st@gmail.com>
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
namespace think\log\alarm; namespace think\log\alarm;
/** /**

View File

@@ -8,6 +8,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com> // | Author: liu21st <liu21st@gmail.com>
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
namespace think\log\driver; namespace think\log\driver;
/** /**

View File

@@ -1,13 +1,5 @@
<?php <?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2016 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
namespace think\log\driver; namespace think\log\driver;
/** /**

View File

@@ -8,6 +8,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com> // | Author: liu21st <liu21st@gmail.com>
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
namespace think\log\driver; namespace think\log\driver;
/** /**

View File

@@ -8,6 +8,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com> // | Author: liu21st <liu21st@gmail.com>
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
namespace think\log\driver; namespace think\log\driver;
use think\Config; use think\Config;

View File

@@ -9,7 +9,6 @@
namespace think\process; namespace think\process;
class Utils class Utils
{ {

View File

@@ -11,7 +11,6 @@
namespace think\process\exception; namespace think\process\exception;
use think\Process; use think\Process;
class Timeout extends \RuntimeException class Timeout extends \RuntimeException

View File

@@ -11,7 +11,6 @@
namespace think\process\pipes; namespace think\process\pipes;
use think\Process; use think\Process;
class Unix extends Pipes class Unix extends Pipes

View File

@@ -11,7 +11,6 @@
namespace think\process\pipes; namespace think\process\pipes;
use think\Process; use think\Process;
class Windows extends Pipes class Windows extends Pipes

View File

@@ -8,6 +8,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com> // | Author: liu21st <liu21st@gmail.com>
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
namespace think\view\driver; namespace think\view\driver;
use think\Exception; use think\Exception;

View File

@@ -8,6 +8,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com> // | Author: liu21st <liu21st@gmail.com>
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
namespace think\view\driver; namespace think\view\driver;
use think\Exception; use think\Exception;