Add phpDoc with copyright and licencing info to external ftp libs. Fixes #6155 props DD32.

git-svn-id: http://svn.automattic.com/wordpress/trunk@7241 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
westi 2008-03-11 17:23:30 +00:00
parent 0b22d34ee6
commit bd9c890f3d
3 changed files with 36 additions and 0 deletions

View File

@ -1,4 +1,16 @@
<?php
/**
* PemFTP - A Ftp implementation in pure PHP
*
* @package PemFTP
* @since 2.5
*
* @version 1.0
* @copyright Alexey Dotsenko
* @author Alexey Dotsenko
* @link http://www.phpclasses.org/browse/package/1743.html Site
* @license LPGPL License http://www.opensource.org/licenses/lgpl-license.html
*/
class ftp extends ftp_base {
function ftp($verb=FALSE, $le=FALSE) {

View File

@ -1,4 +1,16 @@
<?php
/**
* PemFTP - A Ftp implementation in pure PHP
*
* @package PemFTP
* @since 2.5
*
* @version 1.0
* @copyright Alexey Dotsenko
* @author Alexey Dotsenko
* @link http://www.phpclasses.org/browse/package/1743.html Site
* @license LPGPL License http://www.opensource.org/licenses/lgpl-license.html
*/
class ftp extends ftp_base {
function ftp($verb=FALSE, $le=FALSE) {

View File

@ -1,4 +1,16 @@
<?php
/**
* PemFTP - A Ftp implementation in pure PHP
*
* @package PemFTP
* @since 2.5
*
* @version 1.0
* @copyright Alexey Dotsenko
* @author Alexey Dotsenko
* @link http://www.phpclasses.org/browse/package/1743.html Site
* @license LPGPL License http://www.opensource.org/licenses/lgpl-license.html
*/
if(!defined('CRLF')) define('CRLF',"\r\n");
if(!defined("FTP_AUTOASCII")) define("FTP_AUTOASCII", -1);
if(!defined("FTP_BINARY")) define("FTP_BINARY", 1);