windwalker-io / core

The framework extended library for Windwalker Starter application.
https://github.com/ventoviro/windwalker-starter
MIT License
4 stars 3 forks source link

[Security][HttpClient] Pre-defined API routes #1152

Open asika32764 opened 1 year ago

asika32764 commented 1 year ago
$client->route('article_list', 'articles/{id}{?layout,category}');

$client->use('@article_list')
    ->var('id', 123)
    ->var(...)
    ->get();