Skip to content

Commit

Permalink
Fixed docblocks
Browse files Browse the repository at this point in the history
  • Loading branch information
srobati committed Aug 26, 2015
1 parent e388165 commit b36df93
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion MySqlConnection.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ protected function getDefaultSchemaGrammar()
/**
* Get the default post processor instance.
*
* @return \Illuminate\Database\Query\Processors\Processor
* @return \Illuminate\Database\Query\Processors\MySqlProcessor
*/
protected function getDefaultPostProcessor()
{
Expand Down
2 changes: 1 addition & 1 deletion SQLiteConnection.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ protected function getDefaultSchemaGrammar()
/**
* Get the default post processor instance.
*
* @return \Illuminate\Database\Query\Processors\Processor
* @return \Illuminate\Database\Query\Processors\SQLiteProcessor
*/
protected function getDefaultPostProcessor()
{
Expand Down
4 changes: 2 additions & 2 deletions SqlServerConnection.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,15 +76,15 @@ protected function getDefaultSchemaGrammar()
/**
* Get the default post processor instance.
*
* @return \Illuminate\Database\Query\Processors\Processor
* @return \Illuminate\Database\Query\Processors\SqlServerProcessor
*/
protected function getDefaultPostProcessor()
{
return new SqlServerProcessor;
}

/**
* Get the Doctrine DBAL Driver.
* Get the Doctrine DBAL driver.
*
* @return \Doctrine\DBAL\Driver\PDOSqlsrv\Driver
*/
Expand Down

0 comments on commit b36df93

Please sign in to comment.