Skip to content

Commit

Permalink
Merge pull request #5 from TorstenDittmann/main
Browse files Browse the repository at this point in the history
fix enum class properties to be non abstract
  • Loading branch information
eldadfux authored Jan 24, 2021
2 parents b6300e1 + 62ce81c commit 1bff135
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/System/System.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

class System
{
static public const X86 = 'x86';
static public const PPC = 'ppc';
static public const ARM = 'arm';
public const X86 = 'x86';
public const PPC = 'ppc';
public const ARM = 'arm';

/**
* Returns the system's OS.
Expand Down

0 comments on commit 1bff135

Please sign in to comment.