* @category Class * @license https://www.gnu.org/licenses/lgpl-3.0.en.html GNU Lesser General Public License * @link www.splendidbear.org * @since 2026. 04. 09. * * @method Step|null find($id, $lockMode = null, $lockVersion = null) * @method Step|null findOneBy(array $criteria, array $orderBy = null) * @method Step[] findAll() * @method Step[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null) */ class StepRepository extends ServiceEntityRepository { public function __construct(ManagerRegistry $registry) { parent::__construct($registry, Step::class); } }