Skip to content
Snippets Groups Projects
Unverified Commit 72ae4d2a authored by Ted Bowman's avatar Ted Bowman
Browse files

make class final and everything private not public

parent 7bd8e44a
No related branches found
Tags 3100110-b4-rename
No related merge requests found
......@@ -7,7 +7,7 @@
/**
* Calculates the update status of a project.
*/
class ProjectStatusCalculator {
final class ProjectStatusCalculator {
/**
* The releases for the project that can be installed safely.
......@@ -23,14 +23,14 @@ class ProjectStatusCalculator {
*
* @see \Drupal\update\UpdateManagerInterface::getProjects()
*/
protected $projectData;
private $projectData;
/**
* The update server project information.
*
* @var \Drupal\update\UpdateServerProjectInfo
*/
protected $updateServerProjectInfo;
private $updateServerProjectInfo;
/**
* Constructs a ProjectStatusCalculator object.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment