miniblog

Unnamed repository; edit this file 'description' to name the repository.
git clone http://git.code.weiherhei.de/miniblog.git
Log | Files | Refs

Queue.class.php (147B)


      1 <?php
      2 
      3 require('QueueEntry.class.php');
      4 
      5 abstract class Queue
      6 {
      7 	abstract public function push( $entry );
      8 	
      9 	abstract public function pull();
     10 }
     11 
     12 ?>