meaningfull() public static méthode

----------------------------------------------------------------------+
public static meaningfull ( $token ) : Bool
Résultat Bool ----------------------------------------------------------------------+
Exemple #1
0
 /**
 ----------------------------------------------------------------------+
 * Return the previous meaningfull token
 * @param	int	current position
 * @return	Int
 ----------------------------------------------------------------------+
 */
 protected function prev($pos)
 {
     $i = $pos;
     $o = $this->node->tokens;
     $c = $this->node->start;
     while (--$i > $c) {
         if (\phplinter\Tokenizer::meaningfull($o[$i][0])) {
             return $i;
         }
     }
     return false;
 }