2006-05-30 12:42:10 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Doctrine_Null
|
2006-06-07 00:37:56 +04: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 12:42:10 +04:00
|
|
|
*/
|
|
|
|
class Doctrine_Null { }
|
|
|
|
?>
|