diff options
| author | spider@app1 <spiderr@bitweaver.org> | 2016-06-21 22:07:06 -0400 |
|---|---|---|
| committer | spider@app1 <spiderr@bitweaver.org> | 2016-06-21 22:07:06 -0400 |
| commit | cec800fda236ec867c25f3dbb85ca4f365c34335 (patch) | |
| tree | 5b3b783ae8d92be6b3dc67b483131469f130fdc3 | |
| parent | 0fc907e2fbfc271d7d73ccf48d4f33b8972d52d0 (diff) | |
| download | languages-cec800fda236ec867c25f3dbb85ca4f365c34335.tar.gz languages-cec800fda236ec867c25f3dbb85ca4f365c34335.tar.bz2 languages-cec800fda236ec867c25f3dbb85ca4f365c34335.zip | |
change-class-var-to-public
| -rw-r--r-- | Bablotron.php | 6 | ||||
| -rw-r--r-- | BitLanguage.php | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Bablotron.php b/Bablotron.php index 5325e78..8be8ba2 100644 --- a/Bablotron.php +++ b/Bablotron.php @@ -32,17 +32,17 @@ class Bablotron extends BitBase /** * @todo Variable is scoped here but not really used in this scope below. */ - var $words; + public $words; /** * Used to store the current language. * * @todo Not sure where this gets set from. Is used in other libraries. */ - var $lan; + public $lan; /** * @todo Empty variable - does nothing */ - var $db; + public $db; /** * Spellchecking and finding of alternative words */ diff --git a/BitLanguage.php b/BitLanguage.php index a865cc3..6b2838f 100644 --- a/BitLanguage.php +++ b/BitLanguage.php @@ -15,9 +15,9 @@ */ class BitLanguage extends BitSingleton { // list of available (non-disabled) languages - var $mLanguageList; + public $mLanguageList; - var $mLanguage; + public $mLanguage; /** * initiate BitLanguage |
