根据TYPO3 V6 中的http://docs.typo3.org/typo3cms/CoreApiReference/ApiOverview/Autoloading/Index.html,鼓励使用命名空间,并且任何 PHP 文件都应该只包含一个类。从上面的链接引用
- In TYPO3 every class must reside in its own file, i.e. there should
be only one class per PHP file
- Use the class naming convention and file location.
我的扩展是使用扩展生成器构建的。它使用 twitter API 库,并且有一个config.php
要使用的文件。该文件包含multiple classes
在其中。
问题是,要使用这个 config.php ,遵循这两个条件,我应该把它config.php
分成多个 php 文件,每个文件都有一个类吗?
还是有一个非常巧妙的方法来解决这个问题?