Code Duplication    Length = 8-8 lines in 2 locations

src/Filesystem/Driver/DriverEio.php 1 location

@@ 214-221 (lines=8) @@
211
     *
212
     * @return InvokerInterface
213
     */
214
    protected function createInvoker()
215
    {
216
        $invoker = class_exists($this->options['invoker.class'])
217
            ? $this->options['invoker.class']
218
            : InvokerStandard::class
219
        ;
220
        return new $invoker($this);
221
    }
222
}
223

src/Filesystem/Driver/DriverStandard.php 1 location

@@ 120-127 (lines=8) @@
117
     *
118
     * @return InvokerInterface
119
     */
120
    protected function createInvoker()
121
    {
122
        $invoker = class_exists($this->options['invoker.class'])
123
            ? $this->options['invoker.class']
124
            : InvokerStandard::class
125
        ;
126
        return new $invoker($this);
127
    }
128
}
129