Tencent / Biny

Biny is a tiny, high-performance PHP framework for web applications
BSD 3-Clause "New" or "Revised" License
1.69k stars 258 forks source link

model 下 Person.php 这个文件名应该是小写的吧 #38

Closed afisme closed 6 years ago

afisme commented 7 years ago

类名是 person,文件名却是 Person 。导致demo就出错了。后来把文件名改成小写就好了。

billge1205 commented 7 years ago

谢谢提醒 的确是windows下改动大小不敏感导致的 会马上修复

domyhero commented 7 years ago

为什么类名要弄成小写呢?一般不都是大写嘛

billge1205 commented 7 years ago

Biny 中model数据层 文件名 类名 参数名是保持一致的 类似person模型 TXApp::$model->person 对应 /model/person.php 中的 person类 用户也可以根据自己的习惯 命名自定义模型

afisme commented 7 years ago

一般都首字母大写的吧。 可以ucfirst一下

billge1205 commented 7 years ago

恩是的 框架原本有历史包袱 一直没调整 开源了之后会尽可能按照psr-4规范来优化