Skip to content

Commit c8b5b12

Browse files
authored
Merge pull request joomla#85 from zero-24/master
Use `@link` over `@see` and move Links to https
2 parents 3b5d5d5 + fd3e523 commit c8b5b12

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

src/DatabaseQuery.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ public function currentTimestamp()
669669
*
670670
* @return string The string with the appropriate sql for addition of dates
671671
*
672-
* @see http://dev.mysql.com/doc/en/date-and-time-functions.html
672+
* @link https://dev.mysql.com/doc/en/date-and-time-functions.html
673673
* @since 1.5.0
674674
*/
675675
public function dateAdd($date, $interval, $datePart)
@@ -1586,7 +1586,7 @@ public function __clone()
15861586
public function union($query, $distinct = false, $glue = '')
15871587
{
15881588
// Clear any ORDER BY clause in UNION query
1589-
// See http://dev.mysql.com/doc/en/union.html
1589+
// See https://dev.mysql.com/doc/en/union.html
15901590
if (!is_null($this->order))
15911591
{
15921592
$this->clear('order');

src/Mysql/MysqlDriver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
/**
1616
* MySQL database driver supporting PDO based connections
1717
*
18-
* @see http://php.net/manual/en/ref.pdo-mysql.php
18+
* @link https://secure.php.net/manual/en/ref.pdo-mysql.php
1919
* @since 1.0
2020
*/
2121
class MysqlDriver extends PdoDriver

src/Mysql/MysqlIterator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
/**
1414
* MySQL Database Iterator
1515
*
16-
* @see http://dev.mysql.com/doc/
16+
* @link https://dev.mysql.com/doc/
1717
* @since 1.0
1818
*/
1919
class MysqlIterator extends PdoIterator

src/Mysqli/MysqliDriver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
/**
2121
* MySQLi Database Driver
2222
*
23-
* @see http://php.net/manual/en/book.mysqli.php
23+
* @link https://secure.php.net/manual/en/book.mysqli.php
2424
* @since 1.0
2525
*/
2626
class MysqliDriver extends DatabaseDriver

src/Oracle/OracleDriver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
/**
1414
* Oracle Database Driver supporting PDO based connections
1515
*
16-
* @see http://php.net/manual/en/ref.pdo-oci.php
16+
* @link https://secure.php.net/manual/en/ref.pdo-oci.php
1717
* @since 1.0
1818
*/
1919
class OracleDriver extends PdoDriver

src/Pdo/PdoDriver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* Joomla Framework PDO Database Driver Class
2121
*
22-
* @see http://php.net/pdo
22+
* @link https://secure.php.net/pdo
2323
* @since 1.0
2424
*/
2525
abstract class PdoDriver extends DatabaseDriver

src/Sqlazure/SqlazureDriver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
/**
1414
* SQL Azure Database Driver
1515
*
16-
* @see http://msdn.microsoft.com/en-us/library/ee336279.aspx
16+
* @link https://msdn.microsoft.com/en-us/library/ee336279.aspx
1717
* @since 1.0
1818
*/
1919
class SqlazureDriver extends SqlsrvDriver

src/Sqlite/SqliteDriver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
/**
1515
* SQLite database driver supporting PDO based connections
1616
*
17-
* @see http://php.net/manual/en/ref.pdo-sqlite.php
17+
* @link https://secure.php.net/manual/en/ref.pdo-sqlite.php
1818
* @since 1.0
1919
*/
2020
class SqliteDriver extends PdoDriver

src/Sqlsrv/SqlsrvDriver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
/**
2121
* SQL Server Database Driver
2222
*
23-
* @see http://php.net/manual/en/book.sqlsrv.php
23+
* @link https://secure.php.net/manual/en/book.sqlsrv.php
2424
* @since 1.0
2525
*/
2626
class SqlsrvDriver extends DatabaseDriver

0 commit comments

Comments
 (0)