| Conditions | 2 | 
| Paths | 2 | 
| Total Lines | 17 | 
| Code Lines | 12 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 1 | 
| 1 | <?php  | 
            ||
| 51 | protected function execute(InputInterface $input, OutputInterface $output)  | 
            ||
| 52 |     { | 
            ||
| 53 | parent::execute($input, $output);  | 
            ||
| 54 | $types = $this  | 
            ||
| 55 | ->getSession()  | 
            ||
| 56 |             ->getPoolerForType('converter') | 
            ||
| 57 | ->getConverterHolder()  | 
            ||
| 58 | ->getTypes();  | 
            ||
| 59 |         $types = array_filter($types, function ($type) { | 
            ||
| 60 |             return !preg_match('/^pg_catalog\./', $type); | 
            ||
| 61 | });  | 
            ||
| 62 | natcasesort($types);  | 
            ||
| 63 | |||
| 64 |         foreach ($types as $type) { | 
            ||
| 65 | $output->writeln($type);  | 
            ||
| 66 | }  | 
            ||
| 67 | }  | 
            ||
| 68 | }  | 
            ||
| 69 |