Completed
Push — master ( 07c900...f71faa )
by Tom
02:31
created
src/Formatter/Nl2br.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -1,25 +1,25 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Transphporm\Formatter;
3 3
 class Nl2br {
4
-    public function nl2br($var) {
5
-        $parts = explode("\n", $var);
6
-        $doc = new \DomDocument();
7
-        $root = $doc->createElement('root');
8
-        $doc->appendChild($root);
4
+	public function nl2br($var) {
5
+		$parts = explode("\n", $var);
6
+		$doc = new \DomDocument();
7
+		$root = $doc->createElement('root');
8
+		$doc->appendChild($root);
9 9
 
10
-        foreach ($parts as $key => $part) {
11
-            $new = $doc->createTextNode($part);
12
-            $doc->documentElement->appendChild($new);
13
-            if ($key !== count($parts)-1) {
14
-                $br = $doc->createElement('br');
15
-                $doc->documentElement->appendChild($br);
16
-            }
17
-        }
10
+		foreach ($parts as $key => $part) {
11
+			$new = $doc->createTextNode($part);
12
+			$doc->documentElement->appendChild($new);
13
+			if ($key !== count($parts)-1) {
14
+				$br = $doc->createElement('br');
15
+				$doc->documentElement->appendChild($br);
16
+			}
17
+		}
18 18
 
19
-        return $this->getContent($doc);
20
-    }
19
+		return $this->getContent($doc);
20
+	}
21 21
 
22
-    private function getContent($document) {
22
+	private function getContent($document) {
23 23
 		$newNode = $document->documentElement;
24 24
 		$result = [];
25 25
 		if ($newNode->tagName === 'root') {
Please login to merge, or discard this patch.