diff options
author | Davey Shafik <me@daveyshafik.com> | 2017-01-08 15:20:08 -0800 |
---|---|---|
committer | Davey Shafik <me@daveyshafik.com> | 2017-01-08 15:44:38 -0800 |
commit | 9d6716201f0e26256002d476897aeb4dc8ed376f (patch) | |
tree | 505a506f3bcc630d980377ab45a4b8afec42e2b8 /lib | |
parent | 057362d0cb8d9e96a6e55977beb96b032745294e (diff) | |
download | php7-mysql-shim-9d6716201f0e26256002d476897aeb4dc8ed376f.zip php7-mysql-shim-9d6716201f0e26256002d476897aeb4dc8ed376f.tar.gz php7-mysql-shim-9d6716201f0e26256002d476897aeb4dc8ed376f.tar.bz2 |
Add/update file header comments
Diffstat (limited to 'lib')
-rw-r--r-- | lib/mysql.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/mysql.php b/lib/mysql.php index 08af607..f561381 100644 --- a/lib/mysql.php +++ b/lib/mysql.php @@ -1,4 +1,17 @@ <?php +/** + * php7-mysql-shim + * + * @author Davey Shafik <me@daveyshafik.com> + * @copyright Copyright (c) 2017 Davey Shafik + * @license MIT License + * @link https://github.com/dshafik/php7-mysql-shim + */ + +/** + * A drop-in replacement for ext/mysql in PHP 7+ + * using ext/mysqli instead + */ namespace { if (!function_exists('\mysql_connect')) { |