Code Duplication    Length = 8-8 lines in 2 locations

src/Filesystem/Driver/DriverEio.php 1 location

@@ 366-373 (lines=8) @@
363
     *
364
     * @return InvokerInterface
365
     */
366
    protected function createInvoker()
367
    {
368
        $invoker = class_exists($this->options['invoker.class'])
369
            ? $this->options['invoker.class']
370
            : InvokerStandard::class
371
        ;
372
        return new $invoker($this);
373
    }
374
}
375

src/Filesystem/Driver/DriverStandard.php 1 location

@@ 266-273 (lines=8) @@
263
     *
264
     * @return InvokerInterface
265
     */
266
    protected function createInvoker()
267
    {
268
        $invoker = class_exists($this->options['invoker.class'])
269
            ? $this->options['invoker.class']
270
            : InvokerStandard::class
271
        ;
272
        return new $invoker($this);
273
    }
274
}
275