Skip to content

Commit

Permalink
update .gitattributes and convert \r\n to \n in several files
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelceccato committed Nov 5, 2024
1 parent 16f0163 commit 13efe58
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* text=lf
* eol=lf
2 changes: 1 addition & 1 deletion src/Utils/ControllerException.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ public function __construct(int $code, string $message)
{
parent::__construct($message, $code);
}
}
}
2 changes: 1 addition & 1 deletion src/Utils/RouteResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ public function build()
header("Content-Type: {$this->content_type}; charset={$this->charset}");
echo $this->content;
}
}
}
2 changes: 1 addition & 1 deletion src/Utils/Router.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,4 +88,4 @@ public function processRequest(): bool

return ($route_callback != null);
}
}
}

0 comments on commit 13efe58

Please sign in to comment.