Code Duplication    Length = 3-3 lines in 2 locations

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

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