* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PrestaShop\Module\PsAccounts\Vendor\Symfony\Component\DependencyInjection\Loader\Configurator\Traits; /** * @method $this public() * @method $this private() */ trait PublicTrait { /** * @return $this */ protected final function setPublic() { $this->definition->setPublic(\true); return $this; } /** * @return $this */ protected final function setPrivate() { $this->definition->setPublic(\false); return $this; } }