for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @copyright Copyright (c) Flipbox Digital Limited
* @license https://flipboxfactory.com/software/patron/license
* @link https://www.flipboxfactory.com/software/patron/
*/
namespace flipbox\patron\actions\provider\instance\traits;
* @author Flipbox Factory <[email protected]>
* @since 1.0.0
trait Populate
{
* These are the default body params that we're accepting. You can lock down specific Client attributes this way.
*
* @return array
protected function validBodyParams(): array
return [
'provider',
'clientId',
'clientSecret',
'settings',
'environments'
];
}