From 8c93d36e4dbe046994164fc7ac0afdcf6648fbf1 Mon Sep 17 00:00:00 2001 From: Daniele Scasciafratte Date: Wed, 14 Jul 2021 11:56:41 +0200 Subject: [PATCH] feat(release): first release? --- finder.php | 6 ++++++ genesis-stubs.php | 22 ++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/finder.php b/finder.php index 2bd65ac..6871f13 100644 --- a/finder.php +++ b/finder.php @@ -2,6 +2,12 @@ return \StubsGenerator\Finder::create() ->in('source/genesis/lib/functions') + ->append(\StubsGenerator\Finder::create() + ->in(['source/genesis/lib']) + ->files() + ->depth('< 1') + ->path('framework.php') + ) ->notPath('compat.php') ->notPath('deprecated.php') ->sortByName() diff --git a/genesis-stubs.php b/genesis-stubs.php index 5d2e206..92062f1 100644 --- a/genesis-stubs.php +++ b/genesis-stubs.php @@ -602,6 +602,28 @@ function site_footer($attributes) } } namespace { + /** + * Genesis Framework. + * + * WARNING: This file is part of the core Genesis Framework. DO NOT edit this file under any circumstances. + * Please do all modifications in the form of a child theme. + * + * @package Genesis\Framework + * @author StudioPress + * @license GPL-2.0-or-later + * @link https://my.studiopress.com/themes/genesis/ + */ + /** + * Used to initialize the framework in the various template files. + * + * It pulls in all the necessary components like header and footer, the basic + * markup structure, and hooks. + * + * @since 1.3.0 + */ + function genesis() + { + } /** * Genesis Framework. *