1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/Doctrine/Null.php

10 lines
204 B
PHP

<?php
/**
* Doctrine_Null
*
* Simple empty class representing a null value
* used for extra fast null value testing with isset() rather than array_key_exists()
*/
class Doctrine_Null { }
?>