Skip to content

Commit

Permalink
coding/doc standard, move @link after @var, per req
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienbarre committed Mar 9, 2017
1 parent 58078e7 commit d78829b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
3 changes: 1 addition & 2 deletions lib/Cake/Model/Datasource/Database/Mysql.php
Expand Up @@ -113,9 +113,8 @@ class Mysql extends DboSource {
/**
* MySQL column definition
*
* @link https://dev.mysql.com/doc/refman/5.7/en/data-types.html MySQL Data Types
*
* @var array
* @link https://dev.mysql.com/doc/refman/5.7/en/data-types.html MySQL Data Types
*/
public $columns = array(
'primary_key' => array('name' => 'NOT NULL AUTO_INCREMENT'),
Expand Down
3 changes: 1 addition & 2 deletions lib/Cake/Model/Datasource/Database/Postgres.php
Expand Up @@ -51,9 +51,8 @@ class Postgres extends DboSource {
/**
* Columns
*
* @link https://www.postgresql.org/docs/9.6/static/datatype.html PostgreSQL Data Types
*
* @var array
* @link https://www.postgresql.org/docs/9.6/static/datatype.html PostgreSQL Data Types
*/
public $columns = array(
'primary_key' => array('name' => 'serial NOT NULL'),
Expand Down
3 changes: 1 addition & 2 deletions lib/Cake/Model/Datasource/Database/Sqlite.php
Expand Up @@ -63,9 +63,8 @@ class Sqlite extends DboSource {
/**
* SQLite3 column definition
*
* @link https://www.sqlite.org/datatype3.html Datatypes In SQLite Version 3
*
* @var array
* @link https://www.sqlite.org/datatype3.html Datatypes In SQLite Version 3
*/
public $columns = array(
'primary_key' => array('name' => 'integer primary key autoincrement'),
Expand Down
3 changes: 1 addition & 2 deletions lib/Cake/Model/Datasource/Database/Sqlserver.php
Expand Up @@ -84,9 +84,8 @@ class Sqlserver extends DboSource {
/**
* MS SQL column definition
*
* @link https://msdn.microsoft.com/en-us/library/ms187752.aspx SQL Server Data Types
*
* @var array
* @link https://msdn.microsoft.com/en-us/library/ms187752.aspx SQL Server Data Types
*/
public $columns = array(
'primary_key' => array('name' => 'IDENTITY (1, 1) NOT NULL'),
Expand Down

0 comments on commit d78829b

Please sign in to comment.