Skip to content
This repository has been archived by the owner on Jan 8, 2020. It is now read-only.

Commit

Permalink
AbstractPlatform was removed
Browse files Browse the repository at this point in the history
Needs to be Interface typecase
  • Loading branch information
h3lpd3sk committed May 2, 2013
1 parent dd12afa commit 8ebd5ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/Zend/Db/Sql/Sql.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class Sql
/** @var Platform\Platform */
protected $sqlPlatform = null;

public function __construct(AdapterInterface $adapter, $table = null, Platform\AbstractPlatform $sqlPlatform = null)
public function __construct(AdapterInterface $adapter, $table = null, PlatformInterface $sqlPlatform = null)
{
$this->adapter = $adapter;
if ($table) {
Expand Down

0 comments on commit 8ebd5ed

Please sign in to comment.