I am just starting out with Doctrine2 and I noticed that it is highly built around design patterns so I wanted to get some ideas on how to create an application around Doctrine2 using more design patterns.
For example, all Doctrine2 applications will contain a file or class similar to
require '/Doctrine/Common/ClassLoader.php';
use Doctrine\ORM\EntityManager,
Doctrine\ORM\Configuration;
//...class loading and config stuff goes here
$connectionOptions = array(
'driver' => 'pdo_sqlite',
'path' => 'database.sqlite'
);
$em = EntityManager::create($connectionOptions, $config);
Now a framework like Symfony will make it easy to access your EntitityManager and then spit that information out to the screen.
However, some applications are simple enough where an entire framework like Symfony is not necessary. You just want to be able to access your data and then spit it out to a view/ page.
Can you provide an example for a good design pattern that will make this possible?
I am looking forward to seeing some interesting examples and ideas, and in general just good solid Object Oriented PHP toughts.
Thanks.