@@ -878,8 +878,8 @@ Available class properties are:
878878` $this->up `
879879: Upscheme object
880880
881- Furthermore, you can call any [ Doctrine schema] ( https://github.com/doctrine/dbal/blob/3.1.x/src/Schema/Schema.php )
882- method directly, e.g.:
881+ Furthermore, you can call any [ Doctrine schema] ( https://github.com/doctrine/dbal )
882+ method from * src/Schema/Schema.php * directly, e.g.:
883883
884884``` php
885885$db->hasExplicitForeignKeyIndexes();
@@ -1360,7 +1360,7 @@ foreach( $result->iterateAssociative() as $row ) {
13601360}
13611361```
13621362
1363- ** Tip:** Check the [ DBAL methods for retrieving data] ( https://github.com/doctrine/dbal/blob/master/ src/Result.php ) for more information.
1363+ ** Tip:** Check the [ DBAL methods for retrieving data] ( https://github.com/doctrine/dbal ) from * src/Result.php* for more information.
13641364
13651365
13661366#### DB::renameColumn()
@@ -2118,8 +2118,8 @@ Available class properties are:
21182118` $this->up `
21192119: Upscheme object
21202120
2121- Furthermore, you can call any [ Doctrine table] ( https://github.com/doctrine/dbal/blob/3.1.x/src/Schema/Table.php )
2122- method directly, e.g.:
2121+ Furthermore, you can call any [ Doctrine table] ( https://github.com/doctrine/dbal )
2122+ method from * src/Schema/Table.php * directly, e.g.:
21232123
21242124``` php
21252125$table->addUniqueConstraint( ['col1', 'col2'] );
@@ -3400,8 +3400,8 @@ Available class properties are:
34003400` $this->column `
34013401: Doctrine column schema
34023402
3403- Furthermore, you can call any [ Doctrine column] ( https://github.com/doctrine/dbal/blob/3.1.x/src/Schema/Column.php )
3404- method directly, e.g.:
3403+ Furthermore, you can call any [ Doctrine column] ( https://github.com/doctrine/dbal )
3404+ method from * src/Schema/Column.php * directly, e.g.:
34053405
34063406``` php
34073407$column->setPlatformOptions( ['option' => 'value'] );
0 commit comments