Skip to content

Commit

Permalink
House Keeping (#188)
Browse files Browse the repository at this point in the history
## Description

Various updates and changes to codebase

## Checklist
- [ ] Updated CHANGELOG files
- [ ] Updated Documentation
- [ ] Unit Tests Created
- [ ] php-cs-fixer
  • Loading branch information
JoshuaEstes authored Dec 7, 2023
1 parent c81c9a3 commit 13da628
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ purge: # Purge vendor and lock files
rm -rf src/SonsOfPHP/Bundle/*/vendor/ src/SonsOfPHP/Bundle/*/composer.lock
rm -rf src/SonsOfPHP/Component/*/vendor/ src/SonsOfPHP/Component/*/composer.lock
rm -rf src/SonsOfPHP/Contract/*/vendor/ src/SonsOfPHP/Contract/*/composer.lock
rm -rf src/tools/*/vendor/ src/tools/*/composer.lock

test: phpunit ## Run PHPUnit Tests

Expand Down
4 changes: 1 addition & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,9 @@
"ext-intl": "*",
"doctrine/collections": "^2",
"doctrine/orm": "^2",
"sonsofphp/cookie-contract": "0.3.x-dev",
"psr/container": "^1.0 || ^2.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"sonsofphp/http-handler-contract": "0.3.x-dev"
"psr/http-server-middleware": "^1.0"
},
"replace": {
"sonsofphp/bard": "self.version",
Expand Down
2 changes: 1 addition & 1 deletion src/SonsOfPHP/Component/Cookie/CookieManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function get(string $name): CookieInterface
/**
* {@inheritdoc}
*/
public function has(string $name): CookieInterface
public function has(string $name): bool
{
return array_key_exists($name, $_COOKIE);
}
Expand Down

0 comments on commit 13da628

Please sign in to comment.