Skip to content

Commit 8115eef

Browse files
committed
Removed unused variables - again.
1 parent eb051a3 commit 8115eef

File tree

3 files changed

+0
-26
lines changed

3 files changed

+0
-26
lines changed

source/Jocic/Encoders/Base/Base16.php

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -230,14 +230,6 @@ public function decode($input)
230230

231231
public function isEncodingValid($encoding)
232232
{
233-
// Core Variables
234-
235-
$baseTable = $this->getBaseTable();
236-
237-
// Other Variables
238-
239-
$characters = [];
240-
241233
// Step 1 - Check If Empty
242234

243235
if ($encoding == "")

source/Jocic/Encoders/Base/Base32.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -249,15 +249,6 @@ public function decode($input)
249249

250250
public function isEncodingValid($encoding)
251251
{
252-
// Core Variables
253-
254-
$baseTable = $this->getBaseTable();
255-
$basePadding = $this->getBasePadding();
256-
257-
// Other Variables
258-
259-
$characters = [];
260-
261252
// Step 1 - Check If Empty
262253

263254
if ($encoding == "")

source/Jocic/Encoders/Base/Base64.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -253,15 +253,6 @@ public function decode($input)
253253

254254
public function isEncodingValid($encoding)
255255
{
256-
// Core Variables
257-
258-
$baseTable = $this->getBaseTable();
259-
$basePadding = $this->getBasePadding();
260-
261-
// Other Variables
262-
263-
$characters = [];
264-
265256
// Step 1 - Check If Empty
266257

267258
if ($encoding == "")

0 commit comments

Comments
 (0)