.. include:: /Includes.rst.txt ========================== TYPO3 Exception 1264093630 ========================== .. include:: /If-you-encounter-this-exception.rst.txt This error can be caused by a misspelled vendor name. The vendor name (first part of the namespaced class name) must start with a capital letter to work correctly with Extbase. Otherwise PHP class names start with a small letter while the Extbase types start with a capital letter what will cause problems. Make sure the type of each variable is defined in your model: :file:`extensionname/Classes/Domain/Model/*` Set the `@var` in the header :: /** * aString * * @var string */ protected $aString;