1: <?php 2: 3: namespace Quadtree; 4: 5: interface Insertable 6: { 7: /** 8: * Get 2D envelope 9: * @return Geometry\Bounds 10: */ 11: function getBounds(); 12: } 13: