Code Duplication    Length = 6-8 lines in 2 locations

Apps/View/Front/default/profile/show.php 2 locations

@@ 143-148 (lines=6) @@
140
                        ?>
141
                    </td>
142
                </tr>
143
                <?php if ($user->getProfile()->phone !== null && Str::length($user->getProfile()->phone) > 0): ?>
144
                <tr>
145
                    <td><?= __('Phone'); ?></td>
146
                    <td><?= \App::$Security->strip_tags($user->getProfile()->phone); ?></td>
147
                </tr>
148
                <?php endif; ?>
149
                <?php if ($user->getProfile()->url !== null && Str::length($user->getProfile()->url) > 0): ?>
150
                <tr>
151
                    <td><?= __('Website'); ?></td>
@@ 149-156 (lines=8) @@
146
                    <td><?= \App::$Security->strip_tags($user->getProfile()->phone); ?></td>
147
                </tr>
148
                <?php endif; ?>
149
                <?php if ($user->getProfile()->url !== null && Str::length($user->getProfile()->url) > 0): ?>
150
                <tr>
151
                    <td><?= __('Website'); ?></td>
152
                    <td>
153
                        <a rel="nofollow" target="_blank" href="<?= \App::$Security->strip_tags($user->getProfile()->url); ?>"><?= __('Visit'); ?></a>
154
                    </td>
155
                </tr>
156
                <?php endif; ?>
157
                <?php if ($user->getProfile()->city !== null && Str::length($user->getProfile()->city) > 0):
158
                    $city = \App::$Security->strip_tags($user->getProfile()->city);
159
                ?>