Skip to content
Snippets Groups Projects

feature(petition): added text petition

Merged Krzysztof Dyszczyk requested to merge feature/text-petition into master
All threads resolved!
3 files
+ 31
1
Compare changes
  • Side-by-side
  • Inline

Files

<?php
namespace WPDesk\RepositoryRating\DisplayStrategy;
/**
* DisplayDecision - always display.
*/
class AlwaysDisplayDisplayDecision implements DisplayDecision {
/**
* Should display?
*
* @return bool
*/
public function should_display(): bool {
return true;
}
}
\ No newline at end of file
Loading