Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dbout\WpRestApi\Loaders\AnnotationDirectoryLoader::findClass() not working with named arguments #4

Closed
dimitriBouteille opened this issue Feb 25, 2024 · 0 comments · Fixed by #5
Assignees
Labels
bug Something isn't working

Comments

@dimitriBouteille
Copy link
Owner

dimitriBouteille commented Feb 25, 2024

<?php

use Dbout\WpRestApi\Attributes\Route;
use Dbout\WpRestApi\Attributes\Action;

#[Route(
    namespace: 'app/v2',
    route: 'document/(?P<documentId>\d+)'
)]
class Document 
{

    #[Action(Method::GET)]
    public function get(\WP_REST_Request $request): \WP_REST_Response
    {
        // Add your logic 
        $id = $request->get_param('documentId');
       
        return new \WP_REST_Response([
            'success' => true,
        ]);
    }

   #[Action(Method::DELETE)]
    public function delete(\WP_REST_Request $request): \WP_REST_Response
    {
        // Add your logic 
        $id = $request->get_param('documentId');
        
        return new \WP_REST_Response([
            'success' => true,
        ]);
    }
}

findClass not working with this file ... route/Document returned :(

@dimitriBouteille dimitriBouteille self-assigned this Feb 25, 2024
@dimitriBouteille dimitriBouteille added the bug Something isn't working label Feb 25, 2024
dimitriBouteille added a commit that referenced this issue Feb 27, 2024
dimitriBouteille added a commit that referenced this issue Feb 27, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant