| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types = 1); |
||
| 16 | public function get_args(): array { |
||
| 17 | return [ |
||
| 18 | 'labels' => $this->get_labels( |
||
| 19 | __( 'Exemplo', 'app' ), |
||
| 20 | __( 'Exemplos', 'app' ), |
||
| 21 | ), |
||
| 22 | 'public' => true, |
||
| 23 | 'show_in_rest' => true, |
||
| 24 | 'menu_icon' => 'dashicons-smiley', |
||
| 25 | 'supports' => [ 'title', 'custom-fields' ], |
||
| 26 | ]; |
||
| 34 |