Code Duplication    Length = 8-8 lines in 2 locations

src/Filesystem/Driver/DriverEio.php 1 location

@@ 200-207 (lines=8) @@
197
     * @param array $options
198
     * @return array
199
     */
200
    protected function createConfiguration($options = [])
201
    {
202
        return array_merge([
203
            'root' => '',
204
            'invoker.class' => InvokerStandard::class,
205
            'output.control' => false,
206
        ], $options);
207
    }
208
209
    /**
210
     * Create invoker for the driver.

src/Filesystem/Driver/DriverStandard.php 1 location

@@ 106-113 (lines=8) @@
103
     * @param array $options
104
     * @return array
105
     */
106
    protected function createConfiguration($options = [])
107
    {
108
        return array_merge([
109
            'root' => '',
110
            'invoker.class' => InvokerStandard::class,
111
            'output.control' => false,
112
        ], $options);
113
    }
114
115
    /**
116
     * Create invoker for the driver.