Fix #7 Change visibility of $words

The PHPDoc block of `$words` say that the visibility / access of `$words` is private but its `public` in php code.
https://github.com/joshtronic/php-loremipsum/blob/master/src/LoremIpsum.php#L37-L40
This commit is contained in:
Umair Khan 2020-10-01 10:30:09 +05:00 committed by Josh Sherman
parent f0ec43a045
commit 007b7a211e

View file

@ -37,7 +37,7 @@ class LoremIpsum
* @access private
* @var array
*/
public $words = array(
private $words = array(
// Lorem ipsum...
'lorem', 'ipsum', 'dolor', 'sit', 'amet', 'consectetur', 'adipiscing', 'elit',