diff options
Diffstat (limited to 'src/Components/UnionKeyword.php')
-rw-r--r-- | src/Components/UnionKeyword.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Components/UnionKeyword.php b/src/Components/UnionKeyword.php index 8cf8a9f..d1a1ef5 100644 --- a/src/Components/UnionKeyword.php +++ b/src/Components/UnionKeyword.php @@ -25,10 +25,11 @@ class UnionKeyword extends Component /** * @param SelectStatement[] $component The component to be built. + * @param array $options Parameters for building. * * @return string */ - public static function build($component) + public static function build($component, array $options = array()) { return implode(' UNION ', $component); } |