protected function OperationFactory::hasContent in Drupal 10
Same name and namespace in other branches
- 8 composer/Plugin/Scaffold/Operations/OperationFactory.php \Drupal\Composer\Plugin\Scaffold\Operations\OperationFactory::hasContent()
- 9 composer/Plugin/Scaffold/Operations/OperationFactory.php \Drupal\Composer\Plugin\Scaffold\Operations\OperationFactory::hasContent()
Checks to see if the specified scaffold file exists and has content.
Parameters
Drupal\Composer\Plugin\Scaffold\ScaffoldFilePath $file: Scaffold file to check.
Return value
bool True if the file exists and has content.
1 call to OperationFactory::hasContent()
- OperationFactory::createAppendOp in composer/
Plugin/ Scaffold/ Operations/ OperationFactory.php - Creates an 'append' (or 'prepend') scaffold op.
File
- composer/
Plugin/ Scaffold/ Operations/ OperationFactory.php, line 131
Class
- OperationFactory
- Create Scaffold operation objects based on provided metadata.
Namespace
Drupal\Composer\Plugin\Scaffold\OperationsCode
protected function hasContent(ScaffoldFilePath $file = NULL) {
if (!$file) {
return FALSE;
}
$path = $file
->fullPath();
return is_file($path) && filesize($path) > 0;
}