File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -9,10 +9,11 @@ class FakePdo extends PDO implements FakePdoInterface
9
9
{
10
10
use FakePdoTrait;
11
11
12
- /**
13
- * @param string $statement
14
- * @param ?array $options
15
- */
12
+ /**
13
+ * @param string $statement
14
+ * @param array $options
15
+ * @return FakePdoStatement
16
+ */
16
17
public function prepare ($ statement , array $ options = [])
17
18
{
18
19
return new FakePdoStatement ($ this , $ statement , $ this ->real );
Original file line number Diff line number Diff line change @@ -9,10 +9,11 @@ class FakePdo extends \PDO implements FakePdoInterface
9
9
{
10
10
use FakePdoTrait;
11
11
12
- /**
13
- * @param string $statement
14
- * @param array $options
15
- */
12
+ /**
13
+ * @param string $statement
14
+ * @param array $options
15
+ * @return FakePdoStatement
16
+ */
16
17
public function prepare ($ statement , array $ options = [])
17
18
{
18
19
return new FakePdoStatement ($ this , $ statement , $ this ->real );
You can’t perform that action at this time.
0 commit comments