Code Duplication    Length = 6-6 lines in 2 locations

includes/wpinv-template-functions.php 2 locations

@@ 1858-1863 (lines=6) @@
1855
                <th class="text-left"><?php _e( 'Email', 'invoicing' ); ?></th>
1856
                <td><?php echo $billing_details['email'] ;?></td>
1857
            </tr>
1858
            <?php if ( $billing_details['company'] ) { ?>
1859
            <tr class="wpi-receipt-company">
1860
                <th class="text-left"><?php _e( 'Company', 'invoicing' ); ?></th>
1861
                <td><?php echo esc_html( $billing_details['company'] ) ;?></td>
1862
            </tr>
1863
            <?php } ?>
1864
            <tr class="wpi-receipt-address">
1865
                <th class="text-left"><?php _e( 'Address', 'invoicing' ); ?></th>
1866
                <td><?php echo $address_row ;?></td>
@@ 1868-1873 (lines=6) @@
1865
                <th class="text-left"><?php _e( 'Address', 'invoicing' ); ?></th>
1866
                <td><?php echo $address_row ;?></td>
1867
            </tr>
1868
            <?php if ( $billing_details['phone'] ) { ?>
1869
            <tr class="wpi-receipt-phone">
1870
                <th class="text-left"><?php _e( 'Phone', 'invoicing' ); ?></th>
1871
                <td><?php echo esc_html( $billing_details['phone'] ) ;?></td>
1872
            </tr>
1873
            <?php } ?>
1874
        </tbody>
1875
    </table>
1876
    <?php