app = $app; } /** * Register custom post types * @return void */ public function register_post_types() { new PostTypeService( $this->app ); new PostTypeSkill( $this->app ); new PostTypeStat( $this->app ); new PostTypeProject( $this->app ); new PostTypePricing( $this->app ); new PostTypeTestimonial( $this->app ); new PostTypeClient( $this->app ); new PostTypeTeam( $this->app ); new PostTypeFeature( $this->app ); new PostTypeFaq( $this->app ); new PostTypeNews( $this->app ); } }