Passed
Push — master ( 114f52...7ed8fd )
by Harry
02:47
created

src/Chop/TableChopperInterface.php (1 issue)

1
<?php
2
/**
3
 * This file is part of graze/sprout.
4
 *
5
 * Copyright © 2018 Nature Delivered Ltd. <https://www.graze.com>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 *
10
 * @license https://github.com/graze/sprout/blob/master/LICENSE.md
11
 * @link    https://github.com/graze/sprout
12
 */
13
14
namespace Graze\Sprout\Chop;
15
16
interface TableChopperInterface
17
{
18
    /**
19
     * Truncate all the provided tables in the given schema
20
     *
21
     * @param string $schema
22
     * @param string ...$tables
23
     *
24
     * @return void
25
     */
26
    public function chop(string $schema, string ...$tables);
0 ignored issues
show
Unknown type hint "string" found for ...$tables
Loading history...
27
}
28