@@ -25,11 +25,11 @@ |
||
25 | 25 | { |
26 | 26 | parent::configure($definition, $configuration); |
27 | 27 | |
28 | - !isset($configuration['field']) ? : $definition->addMethodCall('setField', [$configuration['field']]); |
|
28 | + !isset($configuration['field']) ?: $definition->addMethodCall('setField', [$configuration['field']]); |
|
29 | 29 | |
30 | - !isset($configuration['operator']) ? : $definition |
|
30 | + !isset($configuration['operator']) ?: $definition |
|
31 | 31 | ->addMethodCall('setOperator', [$configuration['operator']]); |
32 | - !isset($configuration['fuzziness']) ? : $definition |
|
32 | + !isset($configuration['fuzziness']) ?: $definition |
|
33 | 33 | ->addMethodCall('setFuzziness', [$configuration['fuzziness']]); |
34 | 34 | } |
35 | 35 |