for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author: jiangyi
* @date: 下午3:29 2018/11/28
*/
namespace Hello;
class SomeClass
{
public $id;
public static $staticId;
public function doSomething()
// 随便做点什么。
}
public function getId()
return $this->id;