2017-07-28 86 views
1

我正在使用Slim Framework,並且遇到問題。我宣佈我的模塊的模式是這樣的:即使'使用'也找不到模型

use \Autofoldering\Models\AutofolderingModel; 

後,我使用這樣的功能:

$stmt = AutofolderingModel::select([ 
    'select' => [$distinct ? 'distinct ' . $data: $data], 
    'table'  => [$table], 
    'where'  => [$where], 
    'order_by' => [$orderBy], 
]); 

這裏是我有問題,當我嘗試執行:

Uncaught Error: Class 'Autofoldering\Models\AutofolderingModel' not found 

僅供參考,我使用PHPSTORM,並且我沒有任何錯誤,這個班充電很好。

感謝

+1

我從來沒有使用超薄框架,但它似乎是自動加載不叫.. –

+0

上無關的註釋,當用'use'語句導入時,不需要用反斜槓來僞裝完全限定的類名。 – localheinz

+0

正如@MateiMihai所指出的那樣,無論您的自動加載沒有正確設置,或者班級不存在。 – localheinz

回答

0

你嘗試運行:

作曲家轉儲自動加載

+0

是的,我將autofoldering路徑添加到我的composer.json並運行此.. – Nathan30

相關問題