Lines Matching refs:strict
224 * @param boolean $strict strict search? if not found then throw exception
226 * @throws InvalidArgumentException in strict mode and variable not found
229 public function get($variableName, $strict = false)
236 return $this->getDataVariable($variableName, $strict);
245 if ($strict) {
260 if ($strict) {
274 $current = $this->findVariableInContext($current, $chunk, $strict);
284 * @param bool $strict
288 public function getDataVariable($variableName, $strict = false)
298 if ($strict) {
318 if ($strict) {
338 if ($strict) {
355 * @param boolean $strict strict search? if not found then throw exception
357 * @throws \InvalidArgumentException in strict mode and variable not found
360 private function findVariableInContext($variable, $inside, $strict = false)
377 } elseif ($strict) {