Skip to content

Commit

Permalink
Fixed classmap autoloading and formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ManiruzzamanAkash committed Nov 6, 2021
1 parent da3c447 commit e599a06
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 7 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ $sanitize->url("https://bad-url.com new");

## Release Notes:

#### Release version `0.0.5`
- Fixed some autoloading issue with documenting

#### Release version `0.0.4`
- Fixed autoloading functions

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "A php package that would sanitize your every input and HTML",
"type": "library",
"license": "MIT",
"version": "0.0.4",
"version": "0.0.5",
"authors": [
{
"name": "ManiruzzamanAkash",
Expand Down
4 changes: 2 additions & 2 deletions src/Formatter/FormatterInterface.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php

namespace ManiruzzamanAkash\Sanitizer\Formatter;
namespace Maniruzzaman\Sanitizer\Formatter;

/**
* Interface FormatterInterface.
*
* @package ManiruzzamanAkash\Sanitizer\Formatter
* @package Maniruzzaman\Sanitizer\Formatter
* @author Maniruzzaman Akash <[email protected]>
*/
interface FormatterInterface
Expand Down
7 changes: 6 additions & 1 deletion src/Formatter/Utf8Formatter.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
<?php

namespace ManiruzzamanAkash\Sanitizer\Formatter;
namespace Maniruzzaman\Sanitizer\Formatter;

/**
* Utf-8 Formatter.
*
* Formats the given string to utf-8.
*/
class Utf8Formatter implements FormatterInterface
{
/**
Expand Down
6 changes: 3 additions & 3 deletions src/Sanitize.php
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<?php

namespace ManiruzzamanAkash\Sanitizer;
namespace Maniruzzaman\Sanitizer;

use ManiruzzamanAkash\Sanitizer\Formatter\Utf8Formatter;
use Maniruzzaman\Sanitizer\Formatter\Utf8Formatter;

/**
* Sanitize Main class.
*
* @author Maniruzzaman Akash <[email protected]>
* @package ManiruzzamanAkash\Sanitize
* @package Maniruzzaman\Sanitize
*
* @version 0.0.1
*/
Expand Down

0 comments on commit e599a06

Please sign in to comment.