This class seems to be duplicated in your project.
Duplicated code is one of the most pungent code smells. If you need to duplicate
the same code in three or more different places, we strongly encourage you to
look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.
Loading history...
21
{
22
/**
23
* Download Crowdin project Translation Memory as TMX file.
24
*
25
* @param boolean $includeAssigned Defines whether the assigned TMs should be included in downloaded TMX file.
26
* Acceptable values are: 0, 1.
27
* Default is 1.
28
*
29
* @since 1.0.5
30
* @see https://crowdin.com/page/api/download-tm
31
*
32
* @return ResponseInterface
33
*/
34
1
public function download(bool $includeAssigned = true) : ResponseInterface
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.