大家好,请不要快速投票,我已经阅读了与此相关的其他文章,但似乎没有任何结果。我在上面收到此错误,我已经运行了composer dump autoload,当我尝试运行php artisan serve时,它仍然告诉我找不到类
// In IB, set the relation to `=` and the constant to your desired threshold point
// Notice this is a strong reference (since the constraint may get deactivated)
@IBOutlet var textViewHeightConstraint: NSLayoutConstraint!
func textViewDidChange(textView: UITextView)
{
let isOversize = textView.contentSize.height >= textViewHeightConstraint.constant
textViewHeightConstraint.isActive = isOversize
textView.isScrollEnabled = isOversize
}
这是我在In ProviderRepository.php line 208:
Class 'Buno\Readr\ReadrServiceProvider' not found
PS C:\Users\wilesx\Desktop\rauxmac\blog>
中的代码
config/app.php
在这里我添加了作曲家并进行dumpautoload
Buno\Readr\ReadrServiceProvider::class
答案 0 :(得分:4)
我曾经对此进行过斗争,如果它没有被添加到作曲家自动加载并正确地转储,或者甚至可能根本不存在,则很可能找不到您的提供者。查看您的代码,您似乎在错误的目录中运行composer dumpautoload,请确保在Laravel根目录中运行composer dumpautoload,即如果您也已正确将名称空间添加到composer.json文件中。
为清楚起见,在此目录中运行composer dump-autoload-C:\Users\wilesx\Desktop\rauxmac\blog\
让我们看看结果。