A timeline of the Tumblr memes of 2015

if i look back, i am lost
$LAYYYTER
Sweet Seals For You, Always
🪼
No title available
One Nice Bug Per Day
YOU ARE THE REASON

祝日 / Permanent Vacation

izzy's playlists!
"I'm Dorothy Gale from Kansas"
todays bird
PUT YOUR BEARD IN MY MOUTH
will byers stan first human second
d e v o n
noise dept.
Peter Solarz
Cosimo Galluzzi
he wasn't even looking at me and he found me

tannertan36

No title available

seen from Argentina

seen from United States

seen from United States

seen from Colombia
seen from Uzbekistan

seen from Czechia
seen from Türkiye

seen from United Kingdom
seen from United States
seen from United States
seen from United States
seen from Türkiye

seen from Türkiye
seen from France

seen from United States
seen from United States

seen from Brazil

seen from United States

seen from Brazil
seen from United States
@codeventure
A timeline of the Tumblr memes of 2015
Doctrine Annotation Integration
I hoped to add Doctrine to my Zend Framework 2 project.
One crucial oversight I ran into was that the module's config file (config/module.config.php) needs to have 'namespace ____' before returning an array if you want to use the abstract doctrine settings below:
'doctrine' => array(
'driver' => array(
__NAMESPACE__ . '_entity' => array(
'class' => 'Doctrine\ORM\Mapping\Driver\AnnotationDriver',
'cache' => 'array',
'paths' => array(__DIR__ . '/../src/' . __NAMESPACE__ . '/Entity')
),
'orm_default' => array(
'drivers' => array(
__NAMESPACE__ . '\Entity' => __NAMESPACE__ . '_entity'
)
)
),
),
Aside from that, I also needed to add
'enable_default_entities' => false,
to the zfcuser.global.php config file located in the project root's config/autoload folder. Aside from that, a typical entity looks like
namespace ModuleNamespace\Entity; use Doctrine\ORM\Mapping as ORM; /** * @ORM\Entity * @ORM\Table(name="address") */ class Address { ... }
PHPUnit Testing, Composer, and Zend Framework 2
I've installed the ZfcUser module in a Zend Framework 2 skeleton application using Composer, and I want to add unit testing. Out of the box, the Zend Tutorial for adding unit testing to your project was helpful, but incomplete.