Ejemplo n.º 1
0
 /**
  * Get all the lorem text
  *
  * @return string $text
  */
 protected static function _getLoremText()
 {
     if (null === self::$_loremText) {
         self::$_loremText = file(dirname(__FILE__) . '/../../data/lorem/big');
     }
     return self::$_loremText;
 }