artur-graniszewski/pdo-proxy

View on GitHub
src/PDOStatementCommandInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace PDOProxy;

interface PDOStatementCommandInterface extends PDOCommandInterface
{
    public function getParentArgs() : array;

    public function setParentArgs(array $args);

    public function getParentMethodName() : string;
}