Skip to content

Commit

Permalink
^ routes.yaml | Code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
SindlaXYZ committed Mar 28, 2024
1 parent b2899e3 commit 083c7cb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 12 deletions.
5 changes: 5 additions & 0 deletions src/Resources/config/routes/routes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ aurora.controller.blackhole:
- '/wp-info.php'
- '/{anything}/wp-info.php'
- '/{anything}/wp-includes/wlwmanifest.xml'
- '{anything}/taf.php'
- '/taf.php'
- '/wp-admin/admin.php'
- '{anything}/chosen.php'
- 'chosen.php'
# Joomla
- '/nf_tracking.php'
# eval-stdin.php
Expand Down
11 changes: 0 additions & 11 deletions src/Utils/Helper/Helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@ public function __construct(Container $Container)

/**
* Check if a key exists in a multidimensional array
*
* @param $key
* @param array $array
* @return bool
*/
public function arrayMultidimensionalKeyExists($key, array $array): bool
{
Expand All @@ -41,10 +37,6 @@ public function arrayMultidimensionalKeyExists($key, array $array): bool

/**
* Convert a nested array into dot path array
*
* @param array $array
* @param string $prepend
* @return array
*/
public function arrayToFlattenedDotPath(array $array, $prepend = ''): array
{
Expand All @@ -63,9 +55,6 @@ public function arrayToFlattenedDotPath(array $array, $prepend = ''): array

/**
* Recursive ksort
*
* @param array $array
* @return array
*/
public function ksortRecursive(array $array): array
{
Expand Down
2 changes: 1 addition & 1 deletion src/Utils/Strink/Strink.php
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ public function pseudoTranslate(): self
'*' => '⁎',
'+' => '⁺',
',' => '،',
'-' => '‐',
'-' => '─', // ‐
'.' => '·',
'/' => '⁄',
'0' => '⓪',
Expand Down

0 comments on commit 083c7cb

Please sign in to comment.