PHP Fatal error: Uncaught Error: Class not found
问题 I am trying to go trough tutorial of doctrine here is official website. And I got an error in Starting with the Product Entity part. This is what I write to terminal: $ php create_product.php ORM PHP Fatal error: Uncaught Error: Class 'product' not found in /home/vaclav/Server/vssk/VSSK/project/create_product.php:8 Stack trace: #0 {main} thrown in /home/vaclav/Server/vssk/VSSK/project/create_product.php on line 8 回答1: Solved with adding: require_once 'patch_to_your_class/Product.php'; to