Code Duplication    Length = 3-3 lines in 2 locations

src/Ffcms/Core/Network/Request.php 2 locations

@@ 143-145 (lines=3) @@
140
        $routing = App::$Properties->getAll('Routing');
141
142
        // try to work with static aliases
143
        if (Obj::isArray($routing) && isset($routing['Alias'], $routing['Alias'][env_name])) {
144
            $pathway = $this->findStaticAliases($routing['Alias'][env_name], $pathway);
145
        }
146
147
        $this->setPathdata(explode('/', trim($pathway, '/')));
148
@@ 160-162 (lines=3) @@
157
        }
158
159
        // find callback injection in routing configs (calculated in App::run())
160
        if (Obj::isArray($routing) && isset($routing['Callback'], $routing['Callback'][env_name])) {
161
            $this->findDynamicCallbacks($routing['Callback'][env_name], $this->controller);
162
        }
163
    }
164
165
    /**