1# Wrapper 2Wrappers are meta-estimators that wrap a base estimator for the purposes of adding extra functionality. All wrappers allow access to the underlying base estimator's methods from the Wrapper instance, but you can also return and use the base estimator directly by calling the `base()` method. 3 4## Return the Base Estimator 5To return the base estimator: 6```php 7public base() : Estimator 8``` 9