Skip to content

Commit 2a011a1

Browse files
committed
Rebrand documentation intelligence to code intelligence
1 parent fb92ae1 commit 2a011a1

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

monorepo/DocumentationIntelligence/DocumentationIntelligence.php monorepo/CodeIntelligence/CodeIntelligence.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
$this->info('Generating documentation intelligence...');
3535
$this->line();
3636

37-
$generator = new DocumentationIntelligence();
37+
$generator = new CodeIntelligence();
3838

3939
task('discover pages', fn () => $generator->discoverPages());
4040
task('assemble model', fn () => $generator->assembleModel());
@@ -71,7 +71,7 @@
7171
return 0;
7272
});
7373

74-
class DocumentationIntelligence
74+
class CodeIntelligence
7575
{
7676
protected HydeKernel $kernel;
7777

Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Internal Documentation Intelligence
1+
# Internal Code and Documentation Intelligence
22

3-
This internal monorepo module contains tools to analyse the documentation to improve its quality.
3+
This internal monorepo module contains tools to analyse the documentation and codebase to improve its quality.
44
All code here is internal and should not be used outside the monorepo and no support will be provided for it.
55

66
## Usage
@@ -9,5 +9,5 @@ As the resulting data models and dashboards can get quite large, they are exclud
99
To generate them, run the following command:
1010

1111
```bash
12-
php monorepo/DocumentationIntelligence/DocumentationIntelligence.php
12+
php monorepo/CodeIntelligence/CodeIntelligence.php
1313
```

monorepo/DocumentationIntelligence/dashboard-template.php monorepo/CodeIntelligence/dashboard-template.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="utf-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1">
6-
<title>HydePHP Documentation Intelligence Dashboard</title>
6+
<title>HydePHP Code Intelligence Dashboard</title>
77
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
88
<style>
99
.w-fit {
@@ -16,9 +16,9 @@
1616
<header class="container">
1717
<div class="row">
1818
<div class="col-12 py-4 text-center">
19-
<h1>HydePHP Documentation Intelligence Dashboard</h1>
19+
<h1>HydePHP Code Intelligence Dashboard</h1>
2020
<p class="lead">
21-
This internal monorepo module contains tools to analyse the documentation to improve its quality.
21+
This internal monorepo module contains tools to analyse the codebase and documentation to improve its quality.
2222
</p>
2323
</div>
2424
</div>

0 commit comments

Comments
 (0)