Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"cakephp/cakephp": "^5.0",
"symfony/yaml": "^5.0",
"phpdocumentor/reflection-docblock": "^5.1",
"mixerapi/core": "^2.0"
"mixerapi/core": "master-dev"
},
"suggest": {
"cakephp/bake": "Used by SwaggerBake bake templates",
Expand Down Expand Up @@ -79,5 +79,11 @@
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/MasaKni/core.git"
}
]
}
2 changes: 1 addition & 1 deletion tests/test_app/src/Controller/OperationPathController.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
class OperationPathController extends AppController
{
#[OpenApiPathParam(name: 'id', type: 'integer', format: 'int64', description: 'ID')]
public function pathParameter(string $id = null): void
public function pathParameter(?string $id = null): void
{

}
Expand Down