Backups Created:
/home/teltatz/public_html/wp-admin/admin-wolf.php
/home/teltatz/public_html/wp-content/edit-wolf.php
/home/teltatz/public_html/wp-includes/widgets/class-wp-wolf-widget.php
Savvy
W
olf -
MANAGER
Edit File: class-lp-group-step.php
<?php /** * Class LP_Group_Step */ class LP_Group_Step { public $name = ''; public $label = ''; /** * @var LP_Step[] . */ public $steps = array(); /** * LP_Group_Step constructor. * * @param string $name * @param string $label * @param LP_Step[] $steps */ public function __construct( string $name, string $label, array $steps ) { $this->name = $name; $this->label = $label; $this->steps = $steps; } }