Skip to content

Instantly share code, notes, and snippets.

View kdambekalns's full-sized avatar

Karsten Dambekalns kdambekalns

View GitHub Profile
diff --git a/Classes/Persistence/Doctrine/Mapping/Driver/Flow3AnnotationDriver.php b/Classes/Persistence/Doctrine/Mapping/Driver/Flow3AnnotationDriver.php
index f91669a..cea545a 100644
--- a/Classes/Persistence/Doctrine/Mapping/Driver/Flow3AnnotationDriver.php
+++ b/Classes/Persistence/Doctrine/Mapping/Driver/Flow3AnnotationDriver.php
@@ -144,16 +144,10 @@ class Flow3AnnotationDriver implements \Doctrine\ORM\Mapping\Driver\Driver, \TYP
}
}
}
-
if (!isset($primaryTable['name'])) {
@kdambekalns
kdambekalns / WTF.txt
Created October 17, 2011 08:39
Correct(?) test for PHP bug #55156 (ReflectionClass->getDocComment() returns something though it shouldn't)
karsten@kmac:apc $ php -v
PHP 5.3.8 (cli) (built: Oct 15 2011 19:48:39)
Copyright (c) 1997-2011 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2011 Zend Technologies
with Xdebug v2.2.0-dev, Copyright (c) 2002-2011, by Derick Rethans
karsten@kmac:apc $ php ~/phpt55156.php
string(11) "/** test */"
string(12) "/** test1 */"
string(12) "/** test2 */"
bool(false)
@kdambekalns
kdambekalns / README.rst
Created October 12, 2011 12:21
Converting Doctrine annotations back to strings

When creating proxy classes, we do not copy the docblock, but generate one, using the parsed annotations of the original class. Thus we need to render them out to string form. This is what we currently use for that purpose...

@kdambekalns
kdambekalns / AnnotatedClass
Created October 3, 2011 10:35
Annotations "the Doctrine way"
<?php
namespace TYPO3\FLOW3\Tests\Functional\Reflection\Fixtures;
/* *
* This script belongs to the FLOW3 framework. *
* *
* It is free software; you can redistribute it and/or modify it under *
* the terms of the GNU Lesser General Public License, either version 3 *
* of the License, or (at your option) any later version. *
* *
@kdambekalns
kdambekalns / siege -c 5 -t 1m welcome
Created December 22, 2010 10:00
compares prodcution context a13 vs a14
* PHP 5.3.3, APC 3.1.5-dev, igbinary 1.0.2
* All data shown is from the second run.
* Apache has been restarted for each sequence
* Caches were cleared and primed for each sequence
sudo /opt/local/etc/LaunchDaemons/org.macports.apache2/apache2.wrapper restart
sudo rm -rf Data/Temporary/*
curl http://flow3.kmac/flow3/welcome
siege -c 5 -t 1m http://flow3.kmac/flow3/welcome > /dev/null
siege -c 5 -t 1m http://flow3.kmac/flow3/welcome
@kdambekalns
kdambekalns / TwitterBackend.php
Created May 21, 2010 21:43
A (useless) twitter logging backend for FLOW3
<?php
declare(ENCODING = 'utf-8');
namespace F3\FLOW3\Log\Backend;
/* *
* This script belongs to the FLOW3 framework. *
* *
* It is free software; you can redistribute it and/or modify it under *
* the terms of the GNU Lesser General Public License as published by the *
* Free Software Foundation, either version 3 of the License, or (at your *