您的位置:首页 > 编程语言 > PHP开发

每天laravel-20160725| Genaerator command-3

2016-04-27 08:41 573 查看
/**
* Determine if the class already exists.
*
* @param  string  $rawName
* @return bool
*/
protected function alreadyExists($rawName)// variable is name
{
$name = $this->parseName($rawName);// parse name like parseInt

return $this->files->exists($this->getPath($name));// check the file has exists
}// Determine if the class already exists.
// check the instance of the class exists
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: