Changeset 34683

Show
Ignore:
Timestamp:
07/31/09 12:31:35 (4 years ago)
Author:
bto
Message:

added lisence description

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/php/pseudo_queue/trunk/pseudo_queue.php

    r11160 r34683  
    11<?php 
    2 /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */ 
     2/** 
     3 * pseudoQueue 
     4 * 
     5 * Provides message queue system in the easiest way 
     6 * 
     7 * PHP versions 4 and 5 
     8 * 
     9 * LICENSE: This source file is subject to version 3.0 of the PHP license 
     10 * that is available through the world-wide-web at the following URI: 
     11 * http://www.php.net/license/3_0.txt.  If you did not receive a copy of 
     12 * the PHP License and are unable to obtain it through the web, please 
     13 * send a note to license@php.net so we can mail you a copy immediately. 
     14 * 
     15 * @author     Masato Bito <masato@bz2.jp> 
     16 * @license    http://www.php.net/license/3_0.txt  PHP License 3.0 
     17 * @link       http://blog.bz2.jp/archives/2008/05/pseudoqueuephp.html 
     18 */ 
    319 
    420require_once('single_execution.php'); 
     
    174190$queue->send('foo', 'bar'); 
    175191$queue->send('hoge', 'fuga'); 
     192 
     193 
     194/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */