File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3535 */
3636abstract class BaseMapper
3737{
38- /** @var string TABLE_NAME */
38+ /** @var string|null TABLE_NAME */
3939 public const TABLE_NAME = null ;
4040 protected const PRIMARY_KEY = null ;
4141 protected const OBJECT_NAME = null ;
Original file line number Diff line number Diff line change @@ -86,8 +86,8 @@ protected function buildCliArguments(RouterInterface $router): void
8686 /** @var array{argv:array<string>} $_SERVER */
8787 $ router ->buildRouteForRequestUrl ('CLI/index/index ' );
8888
89- $ _SERVER ['argv ' ][0 ] = str_replace (': ' , DIRECTORY_SEPARATOR , $ _SERVER ['argv ' ][0 ]);
90- $ path = 'CLI ' . DIRECTORY_SEPARATOR . implode (DIRECTORY_SEPARATOR , $ _SERVER ['argv ' ]);
89+ $ _SERVER ['argv ' ][0 ] = str_replace (': ' , ' / ' , $ _SERVER ['argv ' ][0 ]);
90+ $ path = 'CLI ' . ' / ' . implode (' / ' , $ _SERVER ['argv ' ]);
9191 $ router ->buildCliArguments ($ path );
9292 }
9393
You can’t perform that action at this time.
0 commit comments