1<?php
2
3namespace ComboStrap;
4
5/**
6 * Fetcher that create their output from a source file
7 */
8interface IFetcherSource extends IFetcher
9{
10
11    public function getSourcePath(): Path;
12
13}
14