Skip to content

Commit

Permalink
Removed unused variables - again.
Browse files Browse the repository at this point in the history
  • Loading branch information
jocic committed Jan 17, 2019
1 parent eb051a3 commit 8115eef
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 26 deletions.
8 changes: 0 additions & 8 deletions source/Jocic/Encoders/Base/Base16.php
Original file line number Diff line number Diff line change
Expand Up @@ -230,14 +230,6 @@ public function decode($input)

public function isEncodingValid($encoding)
{
// Core Variables

$baseTable = $this->getBaseTable();

// Other Variables

$characters = [];

// Step 1 - Check If Empty

if ($encoding == "")
Expand Down
9 changes: 0 additions & 9 deletions source/Jocic/Encoders/Base/Base32.php
Original file line number Diff line number Diff line change
Expand Up @@ -249,15 +249,6 @@ public function decode($input)

public function isEncodingValid($encoding)
{
// Core Variables

$baseTable = $this->getBaseTable();
$basePadding = $this->getBasePadding();

// Other Variables

$characters = [];

// Step 1 - Check If Empty

if ($encoding == "")
Expand Down
9 changes: 0 additions & 9 deletions source/Jocic/Encoders/Base/Base64.php
Original file line number Diff line number Diff line change
Expand Up @@ -253,15 +253,6 @@ public function decode($input)

public function isEncodingValid($encoding)
{
// Core Variables

$baseTable = $this->getBaseTable();
$basePadding = $this->getBasePadding();

// Other Variables

$characters = [];

// Step 1 - Check If Empty

if ($encoding == "")
Expand Down

0 comments on commit 8115eef

Please sign in to comment.