Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
480
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.11 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4.  * Hier beschrijving wat in het document staat
  5.  *
  6.  * @category Testapplicatie
  7.  * @package Messages
  8.  * @subpackage Private messages (PM)
  9.  *
  10.  * @author Milo van soest <milo@soest.nl>
  11.  * @version $Revision 1.0$
  12.  * @copyright Copyright (C) 2010, Milo van soest
  13.  */
  14.  
  15. /**
  16.  * Hier beschrijven waarvoor de klasse dient
  17.  */
  18. class pm
  19. {
  20.     /**
  21.      * Beschrijving variabele
  22.      *
  23.      * @var String
  24.      * @access Private
  25.      */
  26.     private $receiver;
  27.    
  28.     /**
  29.      * Beschrijving variabele
  30.      *
  31.      * @var String
  32.      * @access Private
  33.      */
  34.     private $transmitter;
  35.    
  36.     /**
  37.      * Beschrijving variabele
  38.      *
  39.      * @var String
  40.      * @access Private
  41.      */
  42.     private $date;
  43.    
  44.     /**
  45.      * Beschrijving variabele
  46.      *
  47.      * @var String
  48.      * @access Private
  49.      */
  50.     private $time;
  51.    
  52.     /**
  53.      * Beschrijving variabele
  54.      *
  55.      * @var String
  56.      * @access Private
  57.      */
  58.     private $message;
  59.    
  60.     /**
  61.      * Constructor. Construceert een nieuw pm object.. bladiebla
  62.      *
  63.      * @return Void
  64.      */
  65.     public function __construct( )
  66.     {
  67.     }
  68.    
  69.     /**
  70.      * Methode om te verzenden
  71.      *
  72.      * @return Void
  73.      */
  74.     public function send( )
  75.     {
  76.     }
  77.  
  78. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement