<?php

class SampleService extends BaseService {
    
    public function sampleMethod() {
        echo 'This comes from calling the sampleMethod() of SampleService';
    }
}
