Lines Matching refs:nl
27 . ($node->hooks ? ' {' . $this->pStmts($node->hooks) . $this->nl . '}' : '');
136 return str_replace("\n", $this->nl, $str);
146 $nl = $shouldIdent ? $this->nl : $this->newline;
148 return "<<<'$label'$nl$label{$this->docStringEndToken}";
154 return "<<<'$label'$nl$value$nl$label{$this->docStringEndToken}";
165 $nl = $this->phpVersion->supportsFlexibleHeredoc() ? $this->nl : $this->newline;
167 return "<<<$label$nl$label{$this->docStringEndToken}";
170 return "<<<$label$nl$escaped$nl$label{$this->docStringEndToken}";
184 $nl = $this->phpVersion->supportsFlexibleHeredoc() ? $this->nl : $this->newline;
189 return "<<<$label$nl$label{$this->docStringEndToken}";
192 return "<<<$label$nl" . $this->pEncapsList($node->parts, null)
193 . "$nl$label{$this->docStringEndToken}";
662 . ' {' . $this->pStmts($node->stmts) . $this->nl . '}';
668 . $this->nl
752 . $this->nl . $this->pStmts($node->stmts, false);
755 . ' {' . $this->pStmts($node->stmts) . $this->nl . '}';
783 . $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}';
791 . $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}';
801 . $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}';
815 : ' {' . $this->pStmts($node->adaptations) . $this->nl . '}');
836 . ($node->hooks ? ' {' . $this->pStmts($node->hooks) . $this->nl . '}' : ';');
849 . (\is_array($node->body) ? ' {' . $this->pStmts($node->body) . $this->nl . '}'
860 ? $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}'
877 . $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}';
886 . (null !== $node->stmts ? ' {' . $this->pStmts($node->stmts) . $this->nl . '}' : ';');
897 . $this->pStmts($node->stmts) . $this->nl . '}'
904 . $this->pStmts($node->stmts) . $this->nl . '}';
912 return 'else {' . $this->pStmts($node->stmts) . $this->nl . '}';
920 . ') {' . $this->pStmts($node->stmts) . $this->nl . '}';
927 . $this->pStmts($node->stmts) . $this->nl . '}';
932 . $this->pStmts($node->stmts) . $this->nl . '}';
936 return 'do {' . $this->pStmts($node->stmts) . $this->nl
942 . $this->pStmts($node->cases) . $this->nl . '}';
951 return 'try {' . $this->pStmts($node->stmts) . $this->nl . '}'
959 . ') {' . $this->pStmts($node->stmts) . $this->nl . '}';
963 return 'finally {' . $this->pStmts($node->stmts) . $this->nl . '}';
1027 return '{' . $this->pStmts($node->stmts) . $this->nl . '}';
1038 . $this->nl . '{' . $this->pStmts($node->stmts) . $this->nl . '}';
1178 return $this->pCommaSeparatedMultiline($nodes, $trailingComma) . $this->nl;
1185 $sep = $inline ? ' ' : $this->nl;