for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Testcomponents\Storyblok\Blocks;
use PHP_Typography\Settings as TypographySettings;
use Riclep\Storyblok\Block;
use Riclep\Storyblok\Traits\AppliesTypography;
class Trait2 extends Block
{
use AppliesTypography;
private $applyTypography = ['typography'];
$applyTypography
public function init() {
$settings = new TypographySettings();
$settings->set_style_numbers(false);
$this->setTypographySettings($settings);
$this->applyTypography();
}