2006-05-30 08:42:10 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Doctrine_Null
|
2006-06-06 20:37:56 +00:00
|
|
|
*
|
|
|
|
* Simple empty class representing a null value
|
|
|
|
* used for extra fast null value testing with isset() rather than array_key_exists()
|
2006-05-30 08:42:10 +00:00
|
|
|
*/
|
|
|
|
class Doctrine_Null { }
|
2006-09-03 22:46:30 +00:00
|
|
|
|